Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,771 for EXISTS (0.09 sec)

  1. src/cmd/go/testdata/script/build_output.txt

    go build cmd/gofmt
    exists -exec gofmt$GOEXE
    rm gofmt$GOEXE
    ! exists gofmt$NONEXE
    
    go build -o mygofmt cmd/gofmt
    exists -exec mygofmt
    ! exists mygofmt.exe
    ! exists gofmt
    ! exists gofmt.exe
    
    go build sync/atomic
    ! exists atomic
    ! exists atomic.exe
    
    go build -o myatomic.a sync/atomic
    exists myatomic.a
    exec $GOBIN/isarchive myatomic.a
    ! exists atomic
    ! exists atomic.a
    ! exists atomic.exe
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/clean_binary.txt

    env GO111MODULE=on
    
    ! exists main$GOEXE
    go build main.go
    exists -exec main$GOEXE
    go clean
    ! exists main$GOEXE
    
    # case2: test module-named executable 'a.b.c'
    ! exists a.b.c$GOEXE
    go build
    exists -exec a.b.c$GOEXE
    go clean
    ! exists a.b.c$GOEXE
    
    # case3: directory-named executable 'src'
    env GO111MODULE=off
    
    ! exists src$GOEXE
    go build
    exists -exec src$GOEXE
    go clean
    ! exists src$GOEXE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 13:36:17 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_clean_cache.txt

    go mod download rsc.io/quote@v1.5.0
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.0.info
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.0.mod
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.0.zip
    
    # '-n' should print commands but not actually execute them.
    go clean -modcache -n
    stdout '^rm -rf .*pkg.mod$'
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.0.info
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. platforms/software/antlr/src/integTest/groovy/org/gradle/api/plugins/antlr/IncrementalAntlrTaskIntegrationTest.groovy

            test1TokenFile.exists()
            test1LexerFile.exists()
            test1ParserFile.exists()
    
            test2TokenFile.exists()
            test2LexerFile.exists()
            test2ParserFile.exists()
    
            when:
            removedGrammar("Test1")
    
            then:
            succeeds("generateGrammarSource")
            !test1TokenFile.exists()
            !test1LexerFile.exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeleteIntegrationTest.groovy

            '''
    
            expect:
            succeeds("delete")
            assertTrue(orig.isDirectory())
            assertTrue(orig.exists())
            assertFalse(subject.isDirectory())
            assertFalse(subject.exists())
            assertTrue(keep.exists())
            assertFalse(remove.exists())
            assertFalse(link.exists())
        }
    
        def "will follow symlinks"() {
            given:
            setupSymlinks()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 20 17:44:25 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/helpers_test.go

    			},
    		},
    	}
    
    	// case 1: field exists and is non-nil
    	res, exists, err := NestedFieldNoCopy(obj, "a", "b")
    	assert.True(t, exists)
    	assert.NoError(t, err)
    	assert.Equal(t, target, res)
    	target["foo"] = "baz"
    	assert.Equal(t, target["foo"], res.(map[string]interface{})["foo"], "result should be a reference to the expected item")
    
    	// case 2: field exists and is nil
    	res, exists, err = NestedFieldNoCopy(obj, "a", "c")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 24 07:53:28 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  7. pilot/pkg/config/memory/store.go

    	if !ok {
    		return nil
    	}
    
    	ns, exists := cr.data[kind][namespace]
    	if !exists {
    		return nil
    	}
    
    	out, exists := ns[name]
    	if !exists {
    		return nil
    	}
    	config := out.(config.Config)
    
    	return &config
    }
    
    func (cr *store) List(kind config.GroupVersionKind, namespace string) []config.Config {
    	cr.mutex.RLock()
    	defer cr.mutex.RUnlock()
    	data, exists := cr.data[kind]
    	if !exists {
    		return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_download_hash.txt

    go mod download rsc.io/quote@a91498bed0a73d4bb9c1fb2597925f7883bc40a7
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-0.20180709162918-a91498bed0a7.info
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-0.20180709162918-a91498bed0a7.mod
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-0.20180709162918-a91498bed0a7.zip
    
    go mod download rsc.io/quote@master
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 879 bytes
    - Viewed (0)
  9. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec.groovy

            file('build/classes/stub/Groovy.java').exists()
            groovyClassFile('Groovy.class').exists()
            groovyClassFile('Java.class').exists()
            groovyGeneratedSourceFile('Groovy$$Generated.java').exists()
            groovyGeneratedSourceFile('Java$$Generated.java').exists()
            groovyClassFile('Groovy$$Generated.class').exists()
            groovyClassFile('Java$$Generated.class').exists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 27K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/mutator/ClearArtifactTransformCacheWithoutInstrumentedJarsMutatorTest.groovy

            then:
            !new File(cachesDir, "transforms-1/").exists()
            !new File(cachesDir, "transforms-2/first").exists()
            new File(cachesDir, "transforms-2/second/metadata.bin").exists()
            new File(cachesDir, "transforms-2/second/transformed/${INSTRUMENTATION_CLASSPATH_MARKER.fileName}").exists()
            new File(cachesDir, "transforms-2/second/transformed/instrumented/file").exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 12:30:06 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top