Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pkg/controller/job/metrics/metrics.go

    	JobSyncActionTracking = "tracking"
    	// JobSyncActionPodsCreated when the controller creates Pods. This can happen
    	// when the number of active Pods is less than the wanted Job parallelism.
    	JobSyncActionPodsCreated = "pods_created"
    	// JobSyncActionPodsDeleted when the controller deletes Pods. This can happen
    	// if a Job is suspended or if the number of active Pods is more than
    	// parallelism.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.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. src/cmd/asm/internal/lex/slice.go

    }
    
    func (s *Slice) File() string {
    	return s.base.Filename()
    }
    
    func (s *Slice) Base() *src.PosBase {
    	return s.base
    }
    
    func (s *Slice) SetBase(base *src.PosBase) {
    	// Cannot happen because we only have slices of already-scanned text,
    	// but be prepared.
    	s.base = base
    }
    
    func (s *Slice) Line() int {
    	return s.line
    }
    
    func (s *Slice) Col() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 29 22:49:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/generators/go122-create-syscall-with-p.go

    	// A C thread calls into Go and acquires a P. It returns
    	// back to C, destroying the G. It then comes back to Go
    	// on the same thread and again returns to C.
    	//
    	// Note: on pthread platforms this can't happen on the
    	// same thread because the m is stashed in TLS between
    	// calls into Go, until the thread dies. This is still
    	// possible on other platforms, however.
    	b0 := g.Batch(trace.ThreadID(0), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top