Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 385 for anyone (0.24 sec)

  1. pkg/controller/deployment/deployment_controller.go

    		}
    		logger.V(4).Info("ReplicaSet added", "replicaSet", klog.KObj(rs))
    		dc.enqueueDeployment(d)
    		return
    	}
    
    	// Otherwise, it's an orphan. Get a list of all matching Deployments and sync
    	// them to see if anyone wants to adopt it.
    	ds := dc.getDeploymentsForReplicaSet(logger, rs)
    	if len(ds) == 0 {
    		return
    	}
    	logger.V(4).Info("Orphan ReplicaSet added", "replicaSet", klog.KObj(rs))
    	for _, d := range ds {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    	for _, f := range files {
    		if err := os.Remove(f); err != nil {
    			// this could be a race condition.
    			// conversely, on Windows, err may be nil and
    			// the file not deleted if anyone has it open.
    			u.logger.Printf("%v failed to remove %s", err, f)
    		}
    	}
    }
    
    // createReport for all the count files for the same date.
    // returns the absolute path name of the file containing the report
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. pkg/registry/core/service/storage/storage.go

    	svc := obj.(*api.Service)
    
    	// Make sure ClusterIP and ClusterIPs are in sync.  This has to happen
    	// early, before anyone looks at them.
    	normalizeClusterIPs(After{svc}, Before{nil})
    
    	// Allocate IPs and ports. If we had a transactional store, this would just
    	// be part of the larger transaction.  We don't have that, so we have to do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. pkg/util/async/bounded_frequency_runner.go

    // would violate the minInterval are coalesced and run at the next opportunity.
    //
    // The function will be run at least once per maxInterval. For example, this can
    // force periodic refreshes of state in the absence of anyone calling Run.
    //
    // Examples:
    //
    // NewBoundedFrequencyRunner("name", fn, time.Second, 5*time.Second, 1)
    // - fn will have at least 1 second between runs
    // - fn will have no more than 5 seconds between runs
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  5. maven-core/pom.xml

                  <!-- was only a workaround for Plexus Container, hopefully never used by anyone else -->
                  <exclude>org.apache.maven.plugin.DefaultBuildPluginManager#setMojoExecutionListeners(java.util.List)</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    * <<test_kit.adoc#test_kit,Gradle TestKit>> uses the Tooling API for functional testing of your Gradle plugins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

        /**
         * Returns the additions, changes and removals compared to the other class set.
         * Only includes changes that could possibly trigger recompilation.
         * For example, adding a new class can't affect anyone, since it didn't exist before.
         *
         * Does not include classes that are transitively affected by the additions/removals/changes.
         */
        public DependentsSet getChangedClassesSince(ClassSetAnalysisData other) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    Publishing a plugin is the primary way to make it available for others to use.
    While you can publish to a private repository to restrict access, publishing to the https://plugins.gradle.org[{portal}] makes your plugin available to anyone in the world.
    
    image::plugin-portal-page.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    ----
    
    The first time you run the wrapper, it downloads and caches the Gradle binaries if they are not already installed on your machine.
    
    The Gradle Wrapper is designed to be committed to source control so that anyone can build the project without having to first install and configure a specific version of Gradle.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation_test.go

    				Name: "tester",
    			},
    			expectedCode: http.StatusOK,
    		},
    		{
    			name: "impersonating-error",
    			user: &user.DefaultInfo{
    				Name: "tester",
    			},
    			impersonationUser: "anyone",
    			expectedUser: &user.DefaultInfo{
    				Name: "tester",
    			},
    			expectedCode: http.StatusForbidden,
    		},
    		{
    			name: "impersonating-group-without-user",
    			user: &user.DefaultInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 06 17:13:16 UTC 2021
    - 17.2K bytes
    - Viewed (0)
Back to top