Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,111 for ONCE (0.06 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      // test cases right before running tests in RUN_ALL_TESTS macro.
      // This method should not be called more then once on any single
      // instance of a ParameterizedTestCaseInfoBase derived class.
      // UnitTest has a guard to prevent from calling this method more then once.
      virtual void RegisterTests() {
        for (typename TestInfoContainer::iterator test_it = tests_.begin();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta1/generated.proto

    // release notes for more information.
    // ControllerRevision implements an immutable snapshot of state data. Clients
    // are responsible for serializing and deserializing the objects that contain
    // their internal state.
    // Once a ControllerRevision has been successfully created, it can not be updated.
    // The API Server will fail validation of all requests that attempt to mutate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler.go

    			klog.V(3).Infof("Not a resource request skipping proxying")
    			handler.ServeHTTP(w, r)
    			return
    		}
    
    		// Request has already been proxied once, it must be served locally
    		if r.Header.Get(PeerProxiedHeader) == "true" {
    			klog.V(3).Infof("Already rerouted once, skipping proxying to peer")
    			handler.ServeHTTP(w, r)
    			return
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         *
         * This method must be invoked before {@link #addDependency(Node, Dependency, Predicate, Path)}
         * if output directories are desired on the class-path or module-path.
         * This method can be invoked at most once.
         *
         * @param main the main output directory, or {@code null} if none
         * @param test the test output directory, or {@code null} if none
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/aggregator.go

    			VersionPriority:      apiServicePriority.Version,
    		},
    	}
    }
    
    // makeAPIServiceAvailableHealthCheck returns a healthz check that returns healthy
    // once all of the specified services have been observed to be available at least once.
    func makeAPIServiceAvailableHealthCheck(name string, apiServices []*v1.APIService, apiServiceInformer informers.APIServiceInformer) healthz.HealthChecker {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

            // This caused problems when building the JARs in parallel.
            // We introduced a workaround for our build in https://github.com/gradle/gradle/pull/20366.
    
            // Configuration caching resolves the inputs once more to store the result in the configuration cache.
            int countResolvedBeforeTaskExecution = GradleContextualExecuter.configCache ? 2 : 1
            server.start()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/compilability_check_util.cc

        *inserted.mutable_attr() = attr_lists[i].attr();
      }
      return out;
    }
    
    // Utility which searches for values in a sorted list by scanning over it once.
    // No matter how many times ScanForValue is called, the list is scanned at most
    // once. However, if a call to ScanForValue skips over a value, that value is
    // not revisited in future calls to ScanForValue, so callers must take
    // care to order their calls.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. src/cmd/covdata/dump.go

    	}
    	// For these modes (percent, pkglist, func, etc), use a relaxed
    	// policy when it comes to counter mode clashes. For a percent
    	// report, for example, we only care whether a given line is
    	// executed at least once, so it's ok to (effectively) merge
    	// together runs derived from different counter modes.
    	if d.cmd == percentMode || d.cmd == funcMode || d.cmd == pkglistMode {
    		d.cm.SetModeMergePolicy(cmerge.ModeMergeRelaxed)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/query.go

    	// wildcard) path that could be resolved by adding any of the modules in this
    	// set. For a wildcard pattern that so far matches no packages, the path is
    	// the wildcard pattern itself.
    	//
    	// Each path must occur only once in a query's candidate sets, and the path is
    	// added implicitly to each pathSet returned to pathOnce.
    	path string
    
    	// pkgMods is a set of zero or more modules, each of which contains the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    [[consume]]
    == Consume the published plugin
    
    Once you successfully publish a plugin, it won't immediately appear on the Portal.
    It also needs to pass an approval process, which is manual and relatively slow for the initial version of your plugin, but is fully automatic for subsequent versions.
    For further details, see https://plugins.gradle.org/docs/publish-plugin-new#approval[here].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top