Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for nonexistent1 (0.49 sec)

  1. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/ManifestUtilTest.groovy

        }
    
        def "returns empty classpath list for missing file or directory"() {
            when:
            def nonexistent = new File("does no exist");
            def directory = tmpDir.createDir("new_directory");
    
            then:
            ManifestUtil.parseManifestClasspath(nonexistent) == []
            ManifestUtil.parseManifestClasspath(directory) == []
        }
    
        def "returns empty classpath for non-jar file"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. docker/Dockerfile.distroless

    # Modify contents of container
    COPY --from=distroless_source /etc/ /home/etc
    COPY --from=distroless_source /home/nonroot /home/nonroot
    RUN echo istio-proxy:x:1337: >> /home/etc/group
    RUN echo istio-proxy:x:1337:1337:istio-proxy:/nonexistent:/sbin/nologin >> /home/etc/passwd
    
    # Customize distroless with the following:
    # - password file
    # - groups file
    # - /home/nonroot directory
    FROM distroless_source
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 828 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_vendor_auto.txt

    -- $WORK/auto/go.mod --
    module example.com/auto
    
    go 1.13
    
    require example.com/printversion v1.0.0
    
    replace (
    	example.com/unused => nonexistent.example.com/unused v1.0.0-whatever
    	example.com/version v1.0.0 => ./replacement-version
    	example.com/version v1.2.0 => nonexistent.example.com/version v1.2.0
    )
    -- $WORK/auto/tools.go --
    // +build tools
    
    package auto
    
    import _ "example.com/printversion"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/MojoException.java

         *
         * @param cause the cause which is saved for later retrieval by the {@link #getCause()} method.
         *              A {@code null} value is permitted, and indicates that the cause is nonexistent or unknown.
         */
        public MojoException(Throwable cause) {
            super(cause);
        }
    
        public String getLongMessage() {
            return longMessage;
        }
    
        public Object getSource() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFailuresIntegrationTest.groovy

            def emptyRepo = createDir('empty')
            buildFile '''
    
                configurations {
                    implementation
                }
    
                dependencies {
                    implementation 'non:existent:1.0'
                }
    
                repositories {
                    maven { url = uri('${emptyRepo.uri}') }
                }
    
                class Bean {
                    @InputFiles FileCollection files
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. src/internal/coverage/cfile/testdata/harness.go

    		}
    	}
    
    	// Mangle the output directory to produce something nonexistent.
    	mangled := *outdirflag + "_MANGLED"
    	if err := coverage.WriteMetaDir(mangled); err == nil {
    		log.Fatal("expected error from WriteMetaDir to nonexistent dir")
    	} else {
    		got := fmt.Sprintf("%v", err)
    		checkWant("meta data", got)
    	}
    
    	// Now try to emit counter data file to a bad dir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. hack/lib/init.sh

    #     echo readlinkdashf $1: expected "$X", got "$Y"
    #   fi
    # }
    # testone /
    # testone /tmp
    # testone $T
    # testone $T/file
    # testone $T/dir
    # testone $T/linkfile
    # testone $T/linkdir
    # testone $T/nonexistant
    # testone $T/linkdir/file
    # testone $T/linkdir/dir
    # testone $T/linkdir/linkfile
    # testone $T/linkdir/linkdir
    function kube::readlinkdashf {
      # run in a subshell for simpler 'cd'
      (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. pkg/controller/storageversionmigrator/resourceversion.go

    	fakeSVMNamespaceName          string = "@fake:svm_ns!"
    	ResourceVersionControllerName string = "resource-version-controller"
    )
    
    // ResourceVersionController adds the resource version obtained from a randomly nonexistent namespace
    // to the SVM status before the migration is initiated. This resource version is utilized for checking
    // freshness of GC cache before the migration is initiated.
    type ResourceVersionController struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/certs/certlist_test.go

    		t.Run(test.name, func(t *testing.T) {
    
    			certMap := test.certs.AsMap()
    
    			for _, cert := range test.certs {
    				if cert.CAName != "" && certMap[cert.CAName] == nil {
    					t.Errorf("Certificate %q references nonexistent CA %q", cert.Name, cert.CAName)
    				}
    			}
    		})
    	}
    }
    
    func TestMakeCertTree(t *testing.T) {
    	rootCert := &KubeadmCert{
    		Name: "root",
    	}
    	leaf0 := &KubeadmCert{
    		Name:   "leaf0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top