Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for nonexistent1 (0.32 sec)

  1. pilot/pkg/model/telemetry_test.go

    	}
    	overridesWithDefaultSampling := &tpb.Telemetry{
    		Tracing: []*tpb.Tracing{
    			{
    				CustomTags: map[string]*tpb.Tracing_CustomTag{
    					"foo": {},
    					"baz": {},
    				},
    			},
    		},
    	}
    	nonExistant := &tpb.Telemetry{
    		Tracing: []*tpb.Tracing{
    			{
    				Providers: []*tpb.ProviderRef{
    					{
    						Name: "custom-provider",
    					},
    				},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/analyzers_test.go

    		name:       "sidecarSelector",
    		inputFiles: []string{"testdata/sidecar-selector.yaml"},
    		analyzer:   &sidecar.SelectorAnalyzer{},
    		expected: []message{
    			{msg.ReferencedResourceNotFound, "Sidecar default/maps-to-nonexistent"},
    			{msg.ReferencedResourceNotFound, "Sidecar other/maps-to-different-ns"},
    			{msg.ConflictingSidecarWorkloadSelectors, "Sidecar default/dupe-1"},
    			{msg.ConflictingSidecarWorkloadSelectors, "Sidecar default/dupe-2"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. schema/schema.go

    		if field.DBName == "" && field.DataType != "" {
    			field.DBName = namer.ColumnName(schema.Table, field.Name)
    		}
    
    		bindName := field.BindName()
    		if field.DBName != "" {
    			// nonexistence or shortest path or first appear prioritized if has permission
    			if v, ok := schema.FieldsByDBName[field.DBName]; !ok || ((field.Creatable || field.Updatable || field.Readable) && len(field.BindNames) < len(v.BindNames)) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. src/testing/testing.go

    	// created by a test, each numbered sequentially.
    	c.tempDirMu.Lock()
    	var nonExistent bool
    	if c.tempDir == "" { // Usually the case with js/wasm
    		nonExistent = true
    	} else {
    		_, err := os.Stat(c.tempDir)
    		nonExistent = os.IsNotExist(err)
    		if err != nil && !nonExistent {
    			c.Fatalf("TempDir: %v", err)
    		}
    	}
    
    	if nonExistent {
    		c.Helper()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    								Key:             "example.org/admin_1",
    								ValueExpression: `claims.?is_admin.orValue(false) == true ? "true":""`,
    							},
    							{
    								Key:             "example.org/non_existent",
    								ValueExpression: `claims.?non_existent.orValue("default") == "default" ? "true":""`,
    							},
    						},
    					},
    				},
    				now: func() time.Time { return now },
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry_logging_test.go

    					},
    				},
    			},
    		},
    	}
    	disabled := &tpb.Telemetry{
    		AccessLogging: []*tpb.AccessLogging{
    			{
    				Disabled: &wrappers.BoolValue{Value: true},
    			},
    		},
    	}
    	nonExistant := &tpb.Telemetry{
    		AccessLogging: []*tpb.AccessLogging{
    			{
    				Providers: []*tpb.ProviderRef{
    					{
    						Name: "custom-provider",
    					},
    				},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. src/os/os_test.go

    	}
    	if _, err := rdfs.ReadDir("nonexistent"); err == nil {
    		t.Error("fs.ReadDir of nonexistent directory succeeded")
    	}
    
    	// Test that the error message does not contain a backslash,
    	// and does not contain the DirFS argument.
    	const nonesuch = "dir/nonesuch"
    	_, err := fsys.Open(nonesuch)
    	if err == nil {
    		t.Error("fs.Open of nonexistent file succeeded")
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  8. hack/lib/golang.sh

    }
    EOF
    }
    
    # Argument: the name of a Kubernetes package (e.g. k8s.io/kubernetes/cmd/kube-scheduler).
    # Deletes a test generated by kube::golang::create_coverage_dummy_test.
    # It is not an error to call this for a nonexistent test.
    kube::golang::delete_coverage_dummy_test() {
      local package="$1"
      rm -f "$(kube::golang::path_for_coverage_dummy_test "${package}")"
    }
    
    # Arguments: a list of kubernetes packages to build.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  9. pkg/volume/util/atomic_writer_test.go

    		t.Fatalf("unexpected error ensuring dir %v does not exist: %v", nonExistentDir, err)
    	}
    
    	_, err = NewAtomicWriter(nonExistentDir, "-test-")
    	if err == nil {
    		t.Fatalf("unexpected success creating writer for nonexistent target dir: %v", err)
    	}
    }
    
    func TestValidatePath(t *testing.T) {
    	maxPath := strings.Repeat("a", maxPathLength+1)
    	maxFile := strings.Repeat("a", maxFileNameLength+1)
    
    	cases := []struct {
    		name  string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. plugin/pkg/admission/noderestriction/admission_test.go

    			err:        "not bound to a pod",
    		},
    		{
    			name:       "forbid create of token bound to nonexistant pod",
    			podsGetter: noExistingPods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
Back to top