Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 598 for Initial (0.32 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

         * {@code action} against the configuration.
         */
        Configuration dependencyScopeUnlocked(String name, Action<? super Configuration> action);
    
        /**
         * Creates a new configuration, which can change roles, with initial role {@code role}.
         * Intended only for use with roles defined in {@link ConfigurationRolesForMigration}.
         *
         * @throws org.gradle.api.InvalidUserDataException If a non-migration role is used.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. cmd/kube-apiserver/app/aggregator.go

    	{Group: "node.k8s.io", Version: "v1beta1"}:        {Group: 16300, Version: 9},
    	// Append a new group to the end of the list if unsure.
    	// You can use min(existing group)-100 as the initial value for a group.
    	// Version can be set to 9 (to have space around) for a new group.
    })
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/LinkedHashMultiset.java

    @ElementTypesAreNonnullByDefault
    public final class LinkedHashMultiset<E extends @Nullable Object>
        extends AbstractMapBasedMultiset<E> {
    
      /** Creates a new, empty {@code LinkedHashMultiset} using the default initial capacity. */
      public static <E extends @Nullable Object> LinkedHashMultiset<E> create() {
        return new LinkedHashMultiset<>();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. architecture/standards/0001-use-architectural-decision-records.md

    We use *Specification* and *Discovery* documents stored in Google Drive, but they present some downsides:
    
    * They are rarely updated after creation and initial review, and then become hard to follow, especially after important decisions are made
    * They are not synced with the code to reflect the eventual solution that is committed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 02 21:54:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

    // This is a worklist-driven driver for propagating quantization parameters
    // across operations.
    //
    // The initial quantization parameters are extracted from the quantized type
    // between adjacent `quantfork::QuantizeCastOp` and
    // `quantfork::DequantizeCastOp`s. All these initial parameters are marked as
    // immutable because they are from quantization-aware training.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  6. pkg/controller/resourcequota/resource_quota_controller.go

    			options.UpdateFilter,
    		)
    
    		rq.quotaMonitor = qm
    
    		// do initial quota monitor setup.  If we have a discovery failure here, it's ok. We'll discover more resources when a later sync happens.
    		resources, err := GetQuotableResources(options.DiscoveryFunc)
    		if discovery.IsGroupDiscoveryFailedError(err) {
    			utilruntime.HandleError(fmt.Errorf("initial discovery check failure, continuing and counting on future sync update: %v", err))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. src/net/http/routing_tree.go

    		// Don't record a match for a nameless wildcard (which arises from a
    		// trailing slash in the pattern).
    		if c.pattern.lastSegment().s != "" {
    			matches = append(matches, pathUnescape(path[1:])) // remove initial slash
    		}
    		return c, matches
    	}
    	return nil, nil
    }
    
    // firstSegment splits path into its first segment, and the rest.
    // The path must begin with "/".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableMapEntry.java

       * be upcast back to ImmutableMapEntry[] (or Object[], etc.), or allowed to escape the class.
       *
       * <p>The returned array has all its elements set to their initial null values. However, we don't
       * declare it as {@code @Nullable ImmutableMapEntry[]} because our checker doesn't require newly
       * created arrays to have a {@code @Nullable} element type even when they're created directly with
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/establish/establishing_controller.go

    	establishedCondition := apiextensionsv1.CustomResourceDefinitionCondition{
    		Type:    apiextensionsv1.Established,
    		Status:  apiextensionsv1.ConditionTrue,
    		Reason:  "InitialNamesAccepted",
    		Message: "the initial names have been accepted",
    	}
    	apiextensionshelpers.SetCRDCondition(crd, establishedCondition)
    
    	// Update server with new CRD condition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. tests/integration/telemetry/api/dashboard_test.go

    					Check: check.NoError(), // Do not use check.OK since we expect non-200
    					Retry: echo.Retry{
    						NoRetry: true,
    					},
    				})
    				if err != nil {
    					// Do not fail on errors since there may be initial startup errors
    					// These calls are not under tests, the dashboards are, so we can be leniant here
    					log.Warnf("requests failed: %v", err)
    				}
    				_, err = ing.Call(echo.CallOptions{
    					Port: echo.Port{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top