Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 133 for nonexistent1 (0.14 sec)

  1. src/net/conf_test.go

    	if _, err := f.WriteString(s); err != nil {
    		t.Fatal(err)
    	}
    	if err := f.Close(); err != nil {
    		t.Fatal(err)
    	}
    	return parseNSSConfFile(f.Name())
    }
    
    // represents a dnsConfig returned by parsing a nonexistent resolv.conf
    var defaultResolvConf = &dnsConfig{
    	servers:  defaultNS,
    	ndots:    1,
    	timeout:  5,
    	attempts: 2,
    	err:      fs.ErrNotExist,
    }
    
    func TestConfHostLookupOrder(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/MoreFiles.java

        }
      }
    
      /**
       * Creates any necessary but nonexistent parent directories of the specified path. Note that if
       * this operation fails, it may have succeeded in creating some (but not all) of the necessary
       * parent directories. The parent directory is created with the given {@code attrs}.
       *
       * @throws IOException if an I/O error occurs, or if any necessary but nonexistent parent
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  3. internal/config/certs_test.go

    		t.Fatalf("Unable to create temporary file. %v", err)
    	}
    	defer os.Remove(tempFile5)
    
    	testCases := []struct {
    		certFile          string
    		expectedResultLen int
    		expectedErr       bool
    	}{
    		{"nonexistent-file", 0, true},
    		{tempFile1, 0, true},
    		{tempFile2, 0, true},
    		{tempFile3, 0, true},
    		{tempFile4, 1, false},
    		{tempFile5, 2, false},
    	}
    
    	for _, testCase := range testCases {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

            """
    
            when:
            executeTaskViaTAPI(":other-build:nonexistent")
    
            then:
            def exception = thrown(Exception)
            exception.cause.message.containsIgnoreCase("task 'nonexistent' not found in project ':other-build'.")
        }
    
        def "gives reasonable error message when a project does not exist in the referenced included build"() {
            given:
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. pkg/volume/iscsi/iscsi_util_test.go

    			baseDir: filepath.Join(baseDir, config.DefaultKubeletVolumeDevicesDirName),
    			portal:  "192.168.0.2:3260",
    			iqn:     "iqn.2003-01.io.k8s:e2e.volume-1-lun-4",
    			count:   1,
    		},
    		{
    			name:    "nonexistent path",
    			baseDir: filepath.Join(baseDir, "this_path_should_not_exist"),
    			portal:  "127.0.0.1:3260",
    			iqn:     "iqn.2003-01.io.k8s:e2e.unknown",
    			count:   0,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 09:43:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go

    				ClientConfig:      ccfgSVC("shouldNotBeCalled"),
    				NamespaceSelector: &metav1.LabelSelector{},
    				ObjectSelector: &metav1.LabelSelector{
    					MatchLabels: map[string]string{
    						"label": "nonexistent",
    					},
    				},
    				Rules:                   matchEverythingRules,
    				AdmissionReviewVersions: []string{"v1beta1"},
    			}},
    			ExpectAllow:       true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 47.6K bytes
    - Viewed (0)
  7. 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)
  8. cmd/xl-storage_test.go

    // TestXLStorages xlStorage.getDiskInfo()
    func TestXLStorageGetDiskInfo(t *testing.T) {
    	path := t.TempDir()
    
    	testCases := []struct {
    		diskPath    string
    		expectedErr error
    	}{
    		{path, nil},
    		{"/nonexistent-dir", errDiskNotFound},
    	}
    
    	// Check test cases.
    	for _, testCase := range testCases {
    		if _, err := getDiskInfo(testCase.diskPath); err != testCase.expectedErr {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top