Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 75 for regular (0.13 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    					m = m[1:]
    				}
    
    				rxsrc, err := strconv.Unquote(m)
    				if err != nil {
    					t.Fatalf("%s:%d: error unquoting string: %v", t.goFileName(), i+1, err)
    				}
    
    				// Compile the checks as regular expressions. Notice that we
    				// consider checks as matching from the beginning of the actual
    				// assembler source (that is, what is left on each line of the
    				// compile -S output after we strip file/line info) to avoid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // value of this field is used to distinguish between managers, even if they
      // share the same name. For example, a status update will be distinct from a
      // regular update using the same manager name.
      // Note that the APIVersion field is not related to the Subresource field and
      // it always corresponds to the version of the main resource.
      optional string subresource = 8;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // value of this field is used to distinguish between managers, even if they
      // share the same name. For example, a status update will be distinct from a
      // regular update using the same manager name.
      // Note that the APIVersion field is not related to the Subresource field and
      // it always corresponds to the version of the main resource.
      optional string subresource = 8;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    using jit::DeviceId;
    using jit::DeviceSet;
    
    // The clusters we create here are eventually lowered into an
    // _XlaCompile/_XlaRun pair with a TF executor "fallback" that uses the
    // PartitionedCall op to execute the cluster in the regular graph executor if
    // need be.  PartitionedCall, however, reruns the entire TF graph optimization
    // pipeline over the cluster which includes this mark for compilation pass.  To
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/parser.go

    				var pos Pos // position immediately following the comment
    				if msg[1] == '/' {
    					// line comment (newline is part of the comment)
    					pos = MakePos(p.file, line+1, colbase)
    				} else {
    					// regular comment
    					// (if the comment spans multiple lines it's not
    					// a valid line directive and will be discarded
    					// by updateBase)
    					pos = MakePos(p.file, line, col+uint(len(msg)))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.h

    //                 must either have the same length as `outputs`
    //                 (i.e. `noutputs`) or be null. In the former case,
    //                 the names should match the regular expression for ArgDef
    //                 names - "[a-z][a-z0-9_]*". In the latter case,
    //                 names for outputs will be generated automatically.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  7. src/go/parser/parser.go

    			For:    pos,
    			Key:    key,
    			Value:  value,
    			TokPos: as.TokPos,
    			Tok:    as.Tok,
    			Range:  as.Rhs[0].Pos(),
    			X:      x,
    			Body:   body,
    		}
    	}
    
    	// regular for statement
    	return &ast.ForStmt{
    		For:  pos,
    		Init: s1,
    		Cond: p.makeExpr(s2, "boolean or range expression"),
    		Post: s3,
    		Body: body,
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// value of this field is used to distinguish between managers, even if they
    	// share the same name. For example, a status update will be distinct from a
    	// regular update using the same manager name.
    	// Note that the APIVersion field is not related to the Subresource field and
    	// it always corresponds to the version of the main resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  9. pkg/kubelet/pod_workers.go

    	// Requeue the last update if the last sync returned error.
    	switch {
    	case phaseTransition:
    		p.workQueue.Enqueue(podUID, 0)
    	case syncErr == nil:
    		// No error; requeue at the regular resync interval.
    		p.workQueue.Enqueue(podUID, wait.Jitter(p.resyncInterval, workerResyncIntervalJitterFactor))
    	case strings.Contains(syncErr.Error(), NetworkNotReadyErrorMsg):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      func.return %0: tensor<*xf32>
    }
    
    //===----------------------------------------------------------------------===//
    // LogSoftmax op legalizations.
    // This just changes the tail of the regular Softmax legalization
    //===----------------------------------------------------------------------===//
    
    // CHECK-LABEL: func @simple_logsoftmax
    // CHECK-SAME: (%[[ARG0:.*]]: tensor<2x3xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
Back to top