Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 72 for wbMove (0.23 sec)

  1. src/reflect/value.go

    // returned by MakeFunc. In many ways it is the opposite of the
    // method Value.call above. The method above converts a call using Values
    // into a call of a function with a concrete argument frame, while
    // callReflect converts a call of a function with a concrete argument
    // frame into a call using Values.
    // It is in this file so that it can be next to the call method above.
    // The remainder of the MakeFunc implementation is in makefunc.go.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. pkg/api/pod/util_test.go

    	)
    	// expectedSecretPaths holds struct paths to fields with "secret" in the name that are references to secret API objects.
    	// every path here should be represented as an example in the Pod stub above, with the secret name set to the path.
    	expectedSecretPaths := sets.New[string](
    		"Spec.Containers[*].EnvFrom[*].SecretRef",
    		"Spec.Containers[*].Env[*].ValueFrom.SecretKeyRef",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    		// the stack, but put it in gp.stack before mstart,
    		// so the logic above hasn't set osStack yet.
    		osStack = true
    	}
    	mexit(osStack)
    }
    
    // The go:noinline is to guarantee the getcallerpc/getcallersp below are safe,
    // so that we can set up g0.sched to return to the call of mstart1 above.
    //
    //go:noinline
    func mstart1() {
    	gp := getg()
    
    	if gp != gp.m.g0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. src/crypto/x509/x509_test.go

    				Country:      []string{"US"},
    				ExtraNames: []pkix.AttributeTypeAndValue{
    					{
    						Type:  []int{2, 5, 4, 42},
    						Value: "Gopher",
    					},
    					// This should override the Country, above.
    					{
    						Type:  []int{2, 5, 4, 6},
    						Value: "NL",
    					},
    				},
    			},
    			NotBefore: time.Unix(1000, 0),
    			NotAfter:  time.Unix(100000, 0),
    
    			SignatureAlgorithm: test.sigAlgo,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  5. pkg/apis/batch/validation/validation_test.go

    				},
    			},
    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    		},
    		"spec.maxFailedIndexes: Required value: must be specified when completions is above 100000": {
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    				Spec: batch.JobSpec{
    					Completions:          pointer.Int32(100_001),
    					BackoffLimitPerIndex: pointer.Int32(1),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. src/net/http/server.go

    // in cases where the handler's final output is smaller than the buffer
    // size. It also conditionally adds chunk headers, when in chunking mode.
    //
    // See the comment above (*response).Write for the entire write flow.
    type chunkWriter struct {
    	res *response
    
    	// header is either nil or a deep clone of res.handlerHeader
    	// at the time of res.writeHeader, if res.writeHeader is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/operation_generator.go

    			// so that reconciler can clean up volume when needed. However, volume resize failed,
    			// we should not mark the volume as mounted to avoid pod starts using it.
    			// Considering the above situations, we mark volume as uncertain here so that reconciler will trigger
    			// volume tear down when pod is deleted, and also makes sure pod will not start using it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    //   %1 = tf.ConcatV2(%rhs0, %rhs1, ..., %rhs_n, %rhs_concat_axis)
    //   %2 = tf.Mul(%0, %1)
    //
    // If a minor fraction of the Concat inputs are not of the same binary op kind
    // (tf.Mul in the above example), we will synthesize the binary ops for those
    // inputs. e.g. if we instead have %1 = %lhs_1, then we would synthesize a
    // tf.Mul op over it and a scalar const tensor 1.0. For now this only applies to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top