Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for nonexistent1 (0.17 sec)

  1. pilot/pkg/config/kube/gateway/testdata/invalid.status.yaml.golden

          message: Bad TLS configuration
          reason: Invalid
          status: "False"
          type: Programmed
        - lastTransitionTime: fake
          message: invalid certificate reference /Secret/nonexistent., secret istio-system/nonexistent
            not found
          reason: InvalidCertificateRef
          status: "False"
          type: ResolvedRefs
        name: default
        supportedKinds:
        - group: gateway.networking.k8s.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/FilesTest.java

        File file = file("nonexistent.file");
        assertNull(file.getParentFile());
        assertNotNull(file.getCanonicalFile().getParentFile());
        Files.createParentDirs(file);
      }
    
      public void testCreateParentDirs_noParentsNeeded() throws IOException {
        File file = file(getTempDir(), "nonexistent.file");
        assertTrue(file.getParentFile().exists());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top