Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for addOption (0.16 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    		}
    		if v >= 0 && v <= 4095 && v&((1<<int32(s))-1) == 0 {
    			c.ctxt.Diag("%v: bad type for offset %d (should be 12 bit unsigned immediate store)", p, v)
    		}
    
    		// Handle smaller unaligned and negative offsets via addition or subtraction.
    		if v >= -4095 && v <= 4095 {
    			o1 = c.oaddi12(p, v, REGTMP, int16(r))
    			o2 = c.olsr12u(p, c.opstr(p, p.As), 0, REGTMP, p.From.Reg)
    			break
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    //
    // forEachG takes a lock to exclude concurrent addition of new Gs.
    func forEachG(fn func(gp *g)) {
    	lock(&allglock)
    	for _, gp := range allgs {
    		fn(gp)
    	}
    	unlock(&allglock)
    }
    
    // forEachGRace calls fn on every G from allgs.
    //
    // forEachGRace avoids locking, but does not exclude addition of new Gs during
    // execution, which may be missed.
    func forEachGRace(fn func(gp *g)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    				requests[v1.ResourceEphemeralStorage] = ephemeralStorage.DeepCopy()
    			}
    		}
    		//TODO(vinaykul,derekwaynecarr,InPlacePodVerticalScaling): Update this to include extended resources in
    		// addition to CPU, memory, ephemeral storage. Add test case for extended resources.
    		resources := &v1.ResourceRequirements{
    			Limits:   limits,
    			Requests: requests,
    		}
    		return resources
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    // Each check can fail due to number or type mismatch. However, these
    // conditions are not all independent. So we just check I->{CI, BI}, O->BO, and
    // in addition I->O. BO->BI mismatch cannot be independently created without
    // breaking one of these mismatches. That gives us 4x2 tests. In addition
    // condition result needs to be tensor<i1>, for which we have 3
    // additional validation tests. All these tests are based on the following
    // valid while
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

          },
          "io.k8s.apimachinery.pkg.api.resource.Quantity": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    LogicalResult ParseExampleV2Op::verify() {
      ParseExampleV2Op op = *this;
      // NOTE(mrry): This validates properties of an op that would previously be
      // validated by the TensorFlow OpDef type checker. In addition to these
      // checks, the shape inference function for ParseExampleV2 validates the
      // consistency of the argument and result types.
    
      // Validate dense variadic input and output lengths.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    		src)
    }
    
    // cover2 runs, in effect,
    //
    //	go tool cover -pkgcfg=<config file> -mode=b.coverMode -var="varName" -o <outfiles> <infiles>
    //
    // Return value is an updated output files list; in addition to the
    // regular outputs (instrumented source files) the cover tool also
    // writes a separate file (appearing first in the list of outputs)
    // that will contain coverage counters and meta-data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    ogle/re2/wiki/Syntax). type: string type: object description: withoutHeader has the same syntax with the header, but has opposite meaning. type: object type: object type: array mirror: description: Mirror HTTP traffic to a another destination in addition to forwarding the requests to the intended destination. properties: host: description: The name of a service from the service registry. type: string port: description: Specifies the port on the host that is being addressed. properties: number: type:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %0 = "tf.Const"() {value = dense<[0.0, 0.0, 0.0, 0.0]> : tensor<4xf32>} : () -> tensor<4xf32>
    
      // If operand is a scalar, then the identity value (0.0 for addition) can
      // be of any shape, because operand is safely broadcastable to any shape.
      //
      // However we can't fold this arithmetic operation because the operand
      // shape does not match the result shape.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    // double entry.
    //
    // In the test, a context is canceled while the query is in process so
    // the internal rollback will run concurrently with the explicitly called
    // Tx.Rollback.
    //
    // The addition of calling rows.Next also tests
    // Issue 21117.
    func TestIssue18429(t *testing.T) {
    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    
    	ctx := context.Background()
    	sem := make(chan bool, 20)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top