Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 106 for _ignored (0.24 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			// the SchemaValidator would need to call out to CEL. This test
    			// shows that a rule that would otherwise be an error has those
    			// fields ignored (CRD validation shoulds will throw error in this case)
    			name: "anyOf rule ignored",
    			obj: map[string]interface{}{
    				"key":  "value",
    				"key2": "value",
    			},
    			schema: &schema.Structural{
    				Generic: schema.Generic{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/validation/validation_test.go

    				},
    			}},
    		},
    		}, true),
    		expectedError: `webhooks[0].rules[0].resources: Invalid value: []string{"*/*", "a"}: if '*/*' is present, must not specify other resources`,
    	}, {
    		name: "FailurePolicy can only be \"Ignore\" or \"Fail\"",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name:         "webhook.k8s.io",
    			ClientConfig: validClientConfig,
    			SideEffects:  &unknownSideEffect,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    		return m, fmt.Errorf("failed to list services when setting up env vars")
    	}
    
    	// project the services in namespace ns onto the master services
    	for i := range services {
    		service := services[i]
    		// ignore services where ClusterIP is "None" or empty
    		if !v1helper.IsServiceIPSet(service) {
    			continue
    		}
    		serviceName := service.Name
    
    		// We always want to add environment variabled for master services
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "safer-buffer": ">= 2.1.2 < 3.0.0"
          },
          "engines": {
            "node": ">=0.10.0"
          }
        },
        "node_modules/ignore": {
          "version": "5.2.4",
          "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz",
          "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==",
          "dev": true,
          "engines": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    				rinfo.ReplicationAction = rAction
    				rinfo.ReplicationStatus = replication.Completed
    			}
    			return
    		}
    	} else {
    		// SSEC objects will refuse HeadObject without the decryption key.
    		// Ignore the error, since we know the object exists and versioning prevents overwriting existing versions.
    		if isSSEC && strings.Contains(cerr.Error(), errorCodes[ErrSSEEncryptedObject].Description) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. src/database/sql/sql_test.go

    	Register("bad", badDriver{})
    	db, err := Open("bad", "ignored")
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer func() {
    		if r := recover(); r == nil {
    			t.Error("expected panic")
    		} else {
    			if want := "badConn.Exec"; r.(string) != want {
    				t.Errorf("panic was %v, expected %v", r, want)
    			}
    		}
    	}()
    	defer db.Close()
    	db.Exec("ignored")
    }
    
    type pingDriver struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	if err != nil {
    		t.Fatalf("Unexpected error: %v", err)
    	}
    
    	if createdMeta.GetResourceVersion() != updatedMeta.GetResourceVersion() {
    		t.Errorf("no-op update should be ignored and not written to etcd")
    	}
    }
    
    func TestStoreUpdateHooks(t *testing.T) {
    	// To track which hooks were called in what order.  Not all hooks can
    	// mutate the object.
    	var milestones []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller_test.go

    							},
    						},
    					},
    				},
    			},
    			wantConditions:      nil,
    			wantStatusActive:    1,
    			wantStatusFailed:    0,
    			wantStatusSucceeded: 0,
    		},
    		"ignore pod failure based on OnPodConditions, ignored failures delays pod recreation": {
    			enableJobPodFailurePolicy: true,
    			job: batch.Job{
    				TypeMeta:   metav1.TypeMeta{Kind: "Job"},
    				ObjectMeta: validObjectMeta,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    				klog.V(2).InfoS("SyncLoop (PLEG): event for pod", "pod", klog.KObj(pod), "event", e)
    				handler.HandlePodSyncs([]*v1.Pod{pod})
    			} else {
    				// If the pod no longer exists, ignore the event.
    				klog.V(4).InfoS("SyncLoop (PLEG): pod does not exist, ignore irrelevant event", "event", e)
    			}
    		}
    
    		if e.Type == pleg.ContainerDied {
    			if containerID, ok := e.Data.(string); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. cmd/admin-handlers.go

    	if err = objectAPI.MakeBucket(ctx, bucketName, MakeBucketOptions{VersioningEnabled: globalSiteReplicationSys.isEnabled()}); err != nil {
    		if _, ok := err.(BucketExists); !ok {
    			// Only BucketExists error can be ignored.
    			return false, err
    		}
    		bucketExists = true
    	}
    
    	if globalSiteReplicationSys.isEnabled() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top