Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,092 for EXISTS (0.12 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

            then:
            file("build/repo/org/gradle/test/1.0/test-1.0.jar").exists()
            file("build/repo/org/gradle/test/1.0/test-1.0.jar.md5").exists()
            file("build/repo/org/gradle/test/1.0/test-1.0.jar.sha1").exists()
            file("build/repo/org/gradle/test/1.0/test-1.0.jar.sha256").exists()
            file("build/repo/org/gradle/test/1.0/test-1.0.jar.sha512").exists()
    
            when:
            fails "publish", "-PjarEnabled=false"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

                inputFile.text = "input"
            }
    
            void outputsHaveBeenRemoved() {
                assert !outputFile.exists()
                assert !file(outputDir).exists()
            }
    
            void onlyOutputFileHasBeenRemoved() {
                assert !outputFile.exists()
                assert file(outputDir).exists()
            }
        }
    
        @ToBeImplemented("We don't currently clean up local state")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. guava-testlib/test/com/google/common/collect/testing/features/FeatureUtilTest.java

        // Exists to test that our framework doesn't run it:
        @SuppressWarnings("unused")
        @ExampleDerivedFeature.Require({
          ExampleDerivedFeature.DERIVED_FEATURE_1,
          ExampleDerivedFeature.DERIVED_FEATURE_2
        })
        public void testRequiringTwoExplicitDerivedFeatures() throws Exception {
          doNotActuallyRunThis();
        }
    
        // Exists to test that our framework doesn't run it:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    		return err
    	}
    
    	// The kubeconfig already exists, let's check if it has got the same CA and server URL
    	currentConfig, err := clientcmd.LoadFromFile(kubeConfigFilePath)
    	if err != nil {
    		return errors.Wrapf(err, "failed to load kubeconfig file %s that already exists on disk", kubeConfigFilePath)
    	}
    
    	expectedCtx, exists := config.Contexts[config.CurrentContext]
    	if !exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/FilesTest.java

      }
    
      public void testTouch() throws IOException {
        File temp = createTempFile();
        assertTrue(temp.exists());
        assertTrue(temp.delete());
        assertFalse(temp.exists());
        Files.touch(temp);
        assertTrue(temp.exists());
        Files.touch(temp);
        assertTrue(temp.exists());
    
        assertThrows(
            IOException.class,
            () ->
                Files.touch(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  6. pkg/kubelet/prober/prober_manager.go

    			ready = true
    		} else {
    			// The check whether there is a probe which hasn't run yet.
    			w, exists := m.getWorker(pod.UID, c.Name, readiness)
    			ready = !exists // no readinessProbe -> always ready
    			if exists {
    				// Trigger an immediate run of the readinessProbe to update ready state
    				select {
    				case w.manualTriggerCh <- struct{}{}:
    				default: // Non-blocking.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/defaults.go

    							ResourceName:  resourceName,
    							RestartPolicy: v1.NotRequired,
    						})
    				}
    			}
    			if _, exists := obj.Spec.Containers[i].Resources.Requests[v1.ResourceCPU]; exists {
    				setDefaultResizePolicy(v1.ResourceCPU)
    			}
    			if _, exists := obj.Spec.Containers[i].Resources.Requests[v1.ResourceMemory]; exists {
    				setDefaultResizePolicy(v1.ResourceMemory)
    			}
    		}
    	}
    	for i := range obj.Spec.InitContainers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/SessionTest.java

                checkConnection(f);
                f.resolve("test").exists();
            }
        }
    
    
        @Test
        public void transportReconnects () throws IOException {
            try ( SmbFile f = getDefaultShareRoot() ) {
                // transport disconnects can happen pretty much any time
                assertNotNull(f);
                f.connect();
                f.exists();
                assertNotNull(f);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/certs/certs_test.go

    		expectedCa    *x509.Certificate
    	}{
    		{ // ca cert does not exists > ca written
    			expectedCa: caCert,
    		},
    		{ // ca cert exists, is ca > existing ca used
    			setupFunc: func(pkiDir string) error {
    				return writeCertificateAuthorityFilesIfNotExist(pkiDir, "dummy", setupCert, setupKey)
    			},
    			expectedCa: setupCert,
    		},
    		{ // some file exists, but it is not a valid ca cert > err
    			setupFunc: func(pkiDir string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  10. platforms/software/plugins-distribution/src/integTest/groovy/org/gradle/api/plugins/DistributionPluginIntegrationTest.groovy

                    }
                }
                """
            when:
            run('assemble')
            then:
            file('build/distributions/myDistribution.zip').exists()
            file('build/distributions/myDistribution.tar').exists()
        }
    
        def createDistributionWithVersion() {
            given:
            createDir('src/main/dist') {
                file 'file1.txt'
                dir2 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 21:03:51 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top