Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for alternate (0.17 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// If specified, the time in seconds before the operation should be retried. Some errors may indicate
    	// the client must take an alternate action - for those errors this field may indicate how long to wait
    	// before taking the alternate action.
    	// +optional
    	RetryAfterSeconds int32 `json:"retryAfterSeconds,omitempty" protobuf:"varint,5,opt,name=retryAfterSeconds"`
    }
    
    // Values of Status.Status
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            def files = collection.files
    
            then:
            _ * fileResolver.resolve("src2") >> file2
            files as List == [file1, file2]
            !collection.explicit
        }
    
        def "can alternate multiple updates to collection convention and explicit values"() {
            given:
            def file1 = new File("1")
            def file2 = new File("2")
            def file3 = new File("3")
            def file4 = new File("4")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types.go

    // in this StatefulSet.
    type StatefulSetOrdinals struct {
    	// start is the number representing the first replica's index. It may be used
    	// to number replicas from an alternate index (eg: 1-indexed) over the default
    	// 0-indexed names, or to orchestrate progressive movement of replicas from
    	// one StatefulSet to another.
    	// If set, replica indices will be in the range:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/types.go

    // in this StatefulSet.
    type StatefulSetOrdinals struct {
    	// start is the number representing the first replica's index. It may be used
    	// to number replicas from an alternate index (eg: 1-indexed) over the default
    	// 0-indexed names, or to orchestrate progressive movement of replicas from
    	// one StatefulSet to another.
    	// If set, replica indices will be in the range:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

       (HasOneUse $mul_out),
       (HasOneUse $add_out),
       (HasOneUse $tanh_out),
       (HasOneUse $mul_out1),
       (HasOneUse $add_out1),
       (HasOneUse $mul_out2),
       (HasOneUse $pow_out),
      ]>;
    
    // Alternate pattern for GeluApproximate (see different order for mul), replaces
    //   x * ( 0.5 * ( 1 + tanh( sqrt_2dPi  * ( x + 0.044715 * pow( x, 3 ) ) ) ) )
    def MatchGeluApproximate1 : Pat<
      (TFL_MulOp $arg0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/xcoff.go

    	C_BCOMM   = 135 // Beginning of common block
    	C_ECOML   = 136 // Local member of common block
    	C_ECOMM   = 137 // End of common block
    	C_DECL    = 140 // Declaration of object
    	C_ENTRY   = 141 // Alternate entry
    	C_FUN     = 142 // Function or procedure
    	C_BSTAT   = 143 // Beginning of static block
    	C_ESTAT   = 144 // End of static block
    	C_GTLS    = 145 // Global thread-local variable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  7. src/net/http/request.go

    // earliest days of HTTP.  This value can also be fetched from the
    // [Header] map as Header["Referer"]; the benefit of making it available
    // as a method is that the compiler can diagnose programs that use the
    // alternate (correct English) spelling req.Referrer() but cannot
    // diagnose programs that use Header["Referrer"].
    func (r *Request) Referer() string {
    	return r.Header.Get("Referer")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. src/net/url/url_test.go

    		&URL{
    			Scheme: "http",
    			Host:   "[fe80::1%en01-._~]:8080",
    			Path:   "/",
    		},
    		"http://[fe80::1%25en01-._~]:8080/",
    	},
    	// alternate escapings of path survive round trip
    	{
    		"http://rest.rsc.io/foo%2fbar/baz%2Fquux?alt=media",
    		&URL{
    			Scheme:   "http",
    			Host:     "rest.rsc.io",
    			Path:     "/foo/bar/baz/quux",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. src/time/time.go

    // ago that all the times we care about will be positive, and then round
    // to zero and round down coincide. These presentation routines already
    // have to add the zone offset, so adding the translation to the
    // alternate epoch is cheap. For example, having a non-negative time t
    // means that we can write
    //
    //	sec = t % 60
    //
    // instead of
    //
    //	sec = t % 60
    //	if sec < 0 {
    //		sec += 60
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/MapMakerInternalMap.java

        };
    
        /**
         * Returns the default equivalence strategy used to compare and hash keys or values referenced
         * at this strength. This strategy will be used unless the user explicitly specifies an
         * alternate strategy.
         */
        abstract Equivalence<Object> defaultEquivalence();
      }
    
      /**
       * A helper object for operating on {@link InternalEntry} instances in a type-safe and efficient
       * manner.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top