Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,327 for EXISTS (0.1 sec)

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

    rm go.sum
    ! go list -m all
    stderr 'missing go.sum entry'
    
    go mod graph
    cmp stdout graph.want
    ! exists go.sum
    
    go mod verify
    stdout '^all modules verified$'
    ! exists go.sum
    
    go mod why rsc.io/sampler
    cmp stdout why.want
    ! exists go.sum
    
    go mod why -m rsc.io/sampler
    cmp stdout why.want
    ! exists go.sum
    
    -- go.mod --
    module m
    
    go 1.18
    
    require rsc.io/quote v1.5.2
    
    require (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/software/antlr/src/integTest/groovy/org/gradle/api/plugins/antlr/AntlrPluginIntegrationTest.groovy

            then:
            file("build/generated-src/antlr/main/TestGrammar.java").exists()
            file("build/generated-src/antlr/main/TestGrammar.smap").exists()
            file("build/generated-src/antlr/main/TestGrammarTokenTypes.java").exists()
            file("build/generated-src/antlr/main/TestGrammarTokenTypes.txt").exists()
    
        }
    
        def "can configure antlr source set extension in Groovy scripts"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/resource/local/UniquePathKeyFileStoreTest.groovy

        }
    
        def "add skips action if file already exists"() {
            setup:
            def file = temporaryFolder.createFile("fsbase/a/a");
    
            when:
            def fileInStore = uniquePathKeyFileStore.add("a/a", action)
    
            then:
            fileInStore.file == file
            0 * action.execute(_)
        }
    
        def "move returns existing file if it already exists"() {
            setup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Aug 28 21:50:20 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. manifests/charts/base/templates/validatingadmissionpolicy.yaml

            !(
              variables.isTelemetry && (
                (has(object.spec.tracing) ? object.spec.tracing : {}).exists(t, has(t.useRequestIdForTraceSampling)) ||
                (has(object.spec.metrics) ? object.spec.metrics : {}).exists(m, has(m.reportingInterval)) ||
                (has(object.spec.accessLogging) ? object.spec.accessLogging : {}).exists(l, has(l.filter))
              )
            )
    ---
    apiVersion: admissionregistration.k8s.io/v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 21:07:45 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. cni/pkg/iptables/testdata/hostprobe_ipv6.golden

    iptables -t nat -N ISTIO_POSTRT
    iptables -t nat -A POSTROUTING -j ISTIO_POSTRT
    iptables -t nat -A ISTIO_POSTRT -m owner --socket-exists -p tcp -m set --match-set istio-inpod-probes-v4 dst -j SNAT --to-source 169.254.7.127
    ip6tables -t nat -N ISTIO_POSTRT
    ip6tables -t nat -A POSTROUTING -j ISTIO_POSTRT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 473 bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml

                  - irrelevant
      - name: slctr-expr-exists-yes
        hostname: "*.slctr-expr-exists-yes.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: Selector
            selector:
              matchExpressions:
              - key: istio.io/test-name-part
                operator: Exists
      - name: slctr-expr-exists-no
        hostname: "*.slctr-expr-exists-no.example"
        port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. pkg/util/goroutinemap/goroutinemap.go

    }
    
    func (grm *goRoutineMap) Run(
    	operationName string,
    	operationFunc func() error) error {
    	grm.lock.Lock()
    	defer grm.lock.Unlock()
    
    	existingOp, exists := grm.operations[operationName]
    	if exists {
    		// Operation with name exists
    		if existingOp.operationPending {
    			return NewAlreadyExistsError(operationName)
    		}
    
    		if err := existingOp.expBackoff.SafeToRetry(operationName); err != nil {
    			return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 6.8K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/types.go

    	// EnsureExists takes a pod as argument and makes sure that
    	// pod cgroup exists if qos cgroup hierarchy flag is enabled.
    	// If the pod cgroup doesn't already exist this method creates it.
    	EnsureExists(*v1.Pod) error
    
    	// Exists returns true if the pod cgroup exists.
    	Exists(*v1.Pod) bool
    
    	// Destroy takes a pod Cgroup name as argument and destroys the pod's container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/groovy/environment/JreJavaHomeGroovyIntegrationTest.groovy

                    """
            when:
            executer.withJavaHome(jreJavaHome.absolutePath).withTasks("compileGroovy").run().output
            then:
            groovyClassFile("org/test/JavaClazz.class").exists()
            groovyClassFile("org/test/GroovyClazz.class").exists()
    
            where:
            forkMode << [true, false]
        }
    
        @Requires(UnitTestPreconditions.Windows)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. platforms/software/resources/src/main/java/org/gradle/internal/resource/local/LocalFileStandInExternalResource.java

        }
    
        @Override
        public String getDisplayName() {
            return localFile.getPath();
        }
    
        @Override
        public boolean exists() {
            listener.fileObserved(localFile);
            return localFile.exists();
        }
    
        @Override
        @Nullable
        public ExternalResourceMetaData getMetaData() {
            FileMetadata fileMetadata = fileSystem.stat(localFile);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top