Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 233 for for3 (0.14 sec)

  1. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    rn t===i[e]})}function X(t,e,i){return t.replace(new RegExp(e+"|"+i,"mg"),function(t){return t===e?i:e})}var G=Object.assign||function(t){for(var e=[],i=arguments.length-1;0<i--;)e[i]=arguments[i+1];t=Object(t);for(var n=0;n<e.length;n++){var r=e[n];if(null!==r)for(var o in r)u(r,o)&&(t[o]=r[o])}return t};function K(t){return t[t.length-1]}function J(t,e){for(var i in t)if(!1===e(t[i],i))return!1;return!0}function Z(t,r){return t.sort(function(t,e){var i=t[r];void 0===i&&(i=0);var n=e[r];return void...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    	return e.importPath
    }
    
    func setToolFlags(pkgs ...*Package) {
    	for _, p := range PackageList(pkgs) {
    		p.Internal.Asmflags = BuildAsmflags.For(p)
    		p.Internal.Gcflags = BuildGcflags.For(p)
    		p.Internal.Ldflags = BuildLdflags.For(p)
    		p.Internal.Gccgoflags = BuildGccgoflags.For(p)
    	}
    }
    
    // GoFilesPackage creates a package for building a collection of Go files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

                "description": "Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes. A good name should be descriptive of the associated expression. Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]')...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	RunOnce(<-chan kubetypes.PodUpdate) ([]RunPodResult, error)
    }
    
    // Dependencies is a bin for things we might consider "injected dependencies" -- objects constructed
    // at runtime that are necessary for running the Kubelet. This is a temporary solution for grouping
    // these objects while we figure out a more comprehensive dependency injection story for the Kubelet.
    type Dependencies struct {
    	Options []Option
    
    	// Injected Dependencies
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. src/reflect/value.go

    		}
    		inStart = 1
    	}
    
    	// Handle arguments.
    	for i, v := range in {
    		v.mustBeExported()
    		targ := toRType(t.In(i))
    		// TODO(mknyszek): Figure out if it's possible to get some
    		// scratch space for this assignment check. Previously, it
    		// was possible to use space in the argument frame.
    		v = v.assignTo("reflect.Value.Call", &targ.t, nil)
    	stepsLoop:
    		for _, st := range abid.call.stepsForValue(i + inStart) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

                "description": "Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes. A good name should be descriptive of the associated expression. Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]')...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  7. cmd/server_test.go

    		byteRange      string
    		expectedString string
    	}{
    		// request for byte range 10-11.
    		// expecting the result to contain only putContent[10:12] bytes.
    		{"10-11", putContent[10:12]},
    		// request for object data after the first byte.
    		{"1-", putContent[1:]},
    		// request for object data after the first byte.
    		{"6-", putContent[6:]},
    		// request for last 2 bytes of the object.
    		{"-2", putContent[len(putContent)-2:]},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	// result: (MOVWconst [0])
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpMIPSMOVWconst || auxIntToInt32(v_0.AuxInt) != 0 {
    				continue
    			}
    			v.reset(OpMIPSMOVWconst)
    			v.AuxInt = int32ToAuxInt(0)
    			return true
    		}
    		break
    	}
    	// match: (MUL (MOVWconst [1]) x )
    	// result: x
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        output[i] = max(data[j....]) where segment_ids[j...] = i
        if the maximum is empty for a given segment ID i,
        it outputs the smallest possible value for the specific numeric type,
        output[i] = numeric_limits::lowest().
        Note the values of segment_ids are always validated to be less than
        num_segments and an error is thrown for out-of-bound indices.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				// would disable type checking. We plan to wait for "heterogeneous type" support.
    				//"self.m['a'] == null": "found no matching overload for '_==_' applied to '(string, null)",
    				//"self.l[0] == null": "found no matching overload for '_==_' applied to '(string, null)",
    				//"self.s[0] == null": "found no matching overload for '_==_' applied to '(string, null)",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top