Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for nonexistent1 (0.29 sec)

  1. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/LinuxInstallationSupplierTest.groovy

        def candidates = temporaryFolder.createDir("linux")
        def otherCandidates = temporaryFolder.createDir("other")
        def emptyDir = temporaryFolder.createDir("empty")
        def nonExistent = temporaryFolder.file("non-existent")
    
        def setup() {
            candidates.createDir("11.0.6.hs-adpt")
            candidates.createDir("14")
            otherCandidates.createDir("8.0.262.fx-librca")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. subprojects/core/src/testInterceptors/java/org/gradle/internal/classpath/CompositeCallInterceptionTestInterceptorsDeclaration.java

            @ParameterKind.Receiver CompositeInterceptorTestReceiver self,
            String parameter,
            @ParameterKind.CallerClassName String consumer
        ) {
            self.intercepted = "composite.nonExistent(String)-non-existent";
        }
    
        @InterceptGroovyCalls
        @CallableKind.GroovyPropertyGetter
        public static String intercept_testString(
            @ParameterKind.Receiver CompositeInterceptorTestReceiver self,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 11:38:52 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. istioctl/pkg/proxyconfig/proxyconfig_test.go

    		},
    		{ // supplying nonexistent deployment name should result in error
    			args:           strings.Split("clusters deployment/random-gibberish", " "),
    			expectedString: `"deployment/random-gibberish" does not refer to a pod`,
    			wantException:  true,
    		},
    		{ // supplying nonexistent deployment name in nonexistent namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top