Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,771 for EXISTS (0.17 sec)

  1. pkg/apis/core/toleration_test.go

    				Operator: "Exists",
    				Value:    "bar",
    				Effect:   TaintEffectNoSchedule,
    			},
    			tolerationToMatch: &Toleration{
    				Key:      "foo",
    				Operator: "Exists",
    				Value:    "different-value",
    				Effect:   TaintEffectNoSchedule,
    			},
    			expectMatch: false,
    		},
    		{
    			description: "two taints with the different effect cannot match",
    			toleration: &Toleration{
    				Key:      "foo",
    				Operator: "Exists",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 01:44:27 UTC 2017
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIgnoringIntegrationTest.groovy

            then:
            outputContains("exists = false")
            problems.assertResultHasProblems(result) {
                withNoInputs()
            }
        }
    
        def 'can ignore file system checks in multiple paths if separated by semicolon'() {
            given:
            buildFile("""
                println("exists = " + new File(projectDir, "file1.txt").exists())
                println("exists = " + new File(projectDir, "file2.txt").exists())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_vendor.txt

    exists vendor/x/NOTICE!
    exists vendor/mysite/myname/mypkg/LICENSE.txt
    
    ! exists vendor/a/foo/licensed-to-kill
    ! exists vendor/w
    ! exists vendor/w/LICENSE
    ! exists vendor/x/x2
    ! exists vendor/x/x2/LICENSE
    
    # 'go mod vendor' should work with an alternative vendor directory if the -o flag is provided.
    go mod vendor -v -o alternative-vendor-dir
    exists alternative-vendor-dir/modules.txt
    exists alternative-vendor-dir/a/foo/LICENSE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/cgo_path_space.txt

    [!GOOS:windows] exists -exec $WORK/'program files'/clang
    [!GOOS:windows] exists -exec $WORK/'program files'/gcc
    [!GOOS:windows] env PATH=$WORK/'program files':$PATH
    [GOOS:windows] exists -exec $WORK/'program files'/gcc.bat
    [GOOS:windows] exists -exec $WORK/'program files'/clang.bat
    [GOOS:windows] env PATH=$WORK\'program files';%PATH%
    
    ! exists $WORK/log.txt
    ? go build -x
    exists $WORK/log.txt
    rm $WORK/log.txt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_download.txt

    go mod download rsc.io/quote@v1.5.0
    ! stdout .
    ! stderr .
    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
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.info
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 20:42:35 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  6. cluster/images/etcd/migrate/data_dir_test.go

    		t.Fatalf("Failed to open data dir: %v", err)
    	}
    	exists, err := d.versionFile.Exists()
    	if err != nil {
    		t.Fatal(err)
    	}
    	if exists {
    		t.Errorf("Expected version file %s not to exist", d.versionFile.path)
    	}
    	err = d.Initialize(targetVersion)
    	if err != nil {
    		t.Fatalf("Failed initialize data directory %s: %v", d.path, err)
    	}
    	exists, err = d.versionFile.Exists()
    	if err != nil {
    		t.Fatal(err)
    	}
    	if exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_go_file.txt

    ! go get test
    ! stderr 'arguments must be package or module paths'
    ! stderr 'exists as a file, but ''go get'' requires package arguments'
    
    # argument has .go suffix and has version
    ! go get test.go@v1.0.0
    ! stderr 'arguments must be package or module paths'
    ! stderr 'exists as a file, but ''go get'' requires package arguments'
    
    # argument has .go suffix, is a file and exists
    ! go get test.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  8. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningIntegrationSpec.groovy

            assert m2RepoFile(jarFileName).exists()
            assert ivyRepoFile(jarFileName).exists()
            assert fileRepoFile(jarFileName).exists()
        }
    
        void jarNotUploaded() {
            assert !m2RepoFile(jarFileName).exists()
            assert !ivyRepoFile(jarFileName).exists()
            assert !fileRepoFile(jarFileName).exists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_init_gowork.txt

    # Test that the GOWORK environment variable flag is used by go work init.
    
    ! exists go.work
    go work init
    exists go.work
    
    env GOWORK=$GOPATH/src/foo/foo.work
    ! exists foo/foo.work
    go work init
    exists foo/foo.work
    
    env GOWORK=
    cd foo/bar
    ! go work init
    stderr 'already exists'
    
    # Create directories to make go.work files in.
    -- foo/dummy.txt --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 16 15:58:47 UTC 2022
    - 367 bytes
    - Viewed (0)
  10. plugin/pkg/admission/namespace/exists/admission.go

    }
    
    var _ admission.ValidationInterface = &Exists{}
    var _ = genericadmissioninitializer.WantsExternalKubeInformerFactory(&Exists{})
    var _ = genericadmissioninitializer.WantsExternalKubeClientSet(&Exists{})
    
    // Validate makes an admission decision based on the request attributes
    func (e *Exists) Validate(ctx context.Context, a admission.Attributes, o admission.ObjectInterfaces) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 08 02:16:47 UTC 2020
    - 3.9K bytes
    - Viewed (0)
Back to top