Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 6,499 for happen (0.1 sec)

  1. pkg/test/envoy/binary.go

    	for _, filePath := range filePaths {
    		fileInfo, err := os.Stat(filePath)
    		if err != nil {
    			// Should never happen
    			return "", err
    		}
    		fileTime := fileInfo.ModTime().Unix()
    		if fileTime > latestFileTime {
    			latestFileTime = fileTime
    			latestFilePath = filePath
    		}
    	}
    	return latestFilePath, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 18 22:00:05 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/impl/DefaultDeleter.java

            if (isSymlink.test(file)) {
                help.append("symlink to ");
            }
            if (file.isDirectory()) {
                help.append("directory ");
            } else {
                help.append("file ");
            }
            help.append('\'').append(file).append('\'');
    
            if (shouldRemoveContentsOf(file, handling)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:10:06 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/policy.go

    		skewErrors.Skippable = append(skewErrors.Skippable, errors.Wrap(err, "Unable to fetch kubelet version"))
    	}
    
    	// Make sure the new version is a supported version (higher than the minimum one supported)
    	if !newK8sVersion.AtLeast(constants.MinimumControlPlaneVersion) {
    		// This must not happen, kubeadm always supports a minimum version; and we can't go below that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

                .assertContainsCompileAvoidanceWarning("buildSrc.jar: class com/example/Foo: Unknown Kotlin metadata with kind: 42 on class com/example/Foo - this can happen if this class is compiled with a later Kotlin version than the Kotlin compiler used by Gradle")
    
            givenJavaClassInBuildSrcContains(
                """
                public static String foo() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/resource_operation_safety_analysis.cc

    // enforce arbitrary ordering dependencies (via control or data edges) between
    // resource operations.  Since all resource reads happen before all resource
    // writes, edges constraining resource reads to happen before resource writes
    // are fine, but all other kinds of edges are problematic.  This analysis
    // computes the set of pairs of resource operations that cannot be put in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/DependencyVerificationReportWriter.java

                String param = (String) gradleProperties.find(VERBOSE_CONSOLE);
                return VERBOSE_VALUE.equals(param);
            } catch (IllegalStateException e) {
                // Gradle properties are not loaded yet, which can happen in init scripts
                // let's return a default value
                LOGGER.warn("Gradle properties are not loaded yet, any customization to dependency verification will be ignored until the main build script is loaded.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/override/ComponentOverrideMetadataResolveIntegrationTest.groovy

                    }
                }
            """
    
            when:
            repositoryInteractions {
                'org:foo:1.0' {
                    // expectHeadArtifact(type: 'distribution-tgz') <- head request can happen once or twice depending on timing
                    maybeHeadOrGetArtifact(type: 'distribution-tgz')
                }
            }
            succeeds 'checkDeps'
    
            then:
            resolve.expectGraph {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultRootLocator.java

                // The root locator can be used very early during the setup of Maven,
                // even before the arguments from the command line are parsed.  Any exception
                // that would happen here should cause the build to fail at a later stage
                // (when actually parsing the POM) and will lead to a better exception being
                // displayed to the user, so just bail out and return false.
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheErrorIntegrationTest.groovy

        def "attempting to configure a unknown remote build cache fails with a reasonable error"() {
            settingsFile << """
                buildCache {
                    remote {
                        assert false : "should not happen"
                    }
                }
            """
            when:
            fails("help")
            then:
            failure.assertHasCause("A type for the remote build cache must be configured first.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 12 13:13:02 UTC 2019
    - 3.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/configuration/ConfigurationTargetIdentifier.java

         * Else, null.
         */
        @Nullable
        public abstract String getTargetPath();
    
        public abstract String getBuildPath();
    
        /**
         * Returns null if the thing is of an unknown type.
         * This can happen with {@code apply(from: "foo", to: someTask)},
         * where “to” can be absolutely anything.
         */
        @Nullable
        public static ConfigurationTargetIdentifier of(Object any) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 3.7K bytes
    - Viewed (0)
Back to top