Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 926 for effects (0.31 sec)

  1. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

          stride_depth, stride_height, stride_width);
    
      return success();
    }
    
    // MatrixDiagV3 is MatrixDiagV2 with an alignment attribute. This attribute
    // only has effects when processing multiple diagonals. Since TFLite converts
    // MatrixDiagV{2,3} to MatrixDiag, which only takes single-diagonal inputs, we
    // can safely ignore this V3 attribute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. src/runtime/chan.go

    	// ready for sending and then observe that it is not closed, that implies that the
    	// channel wasn't closed during the first observation. However, nothing here
    	// guarantees forward progress. We rely on the side effects of lock release in
    	// chanrecv() and closechan() to update this thread's view of c.closed and full().
    	if !block && c.closed == 0 && full(c) {
    		return false
    	}
    
    	var t0 int64
    	if blockprofilerate > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/constant-fold.mlir

      func.return %offset#0, %offset#1: tensor<3xi32>, tensor<3xi32>
    }
    
    // Ops with side effects should not get constant folded.
    // CHECK-LABEL: func @testSideEffectOp() -> tensor<3xf32>
    func.func @testSideEffectOp() -> tensor<3xf32> {
      %0 = arith.constant dense<[3]> : tensor<1xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 23:22:24 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/context.go

    	}
    
    	out.ID = parts[2]
    	out.DNSDomain = parts[3]
    	if len(metadata.IstioVersion) == 0 {
    		log.Warnf("Istio Version is not found in metadata for %v, which may have undesirable side effects", out.ID)
    	}
    	out.IstioVersion = ParseIstioVersion(metadata.IstioVersion)
    	return out, nil
    }
    
    // ParseIstioVersion parses a version string and returns IstioVersion struct
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  5. src/strings/strings.go

    	// Find the field start and end indices.
    	// Doing this in a separate pass (rather than slicing the string s
    	// and collecting the result substrings right away) is significantly
    	// more efficient, possibly due to cache effects.
    	start := -1 // valid span start if >= 0
    	for end, rune := range s {
    		if f(rune) {
    			if start >= 0 {
    				spans = append(spans, span{start, end})
    				// Set start to a negative value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller.go

    	dummyPod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{Namespace: si.Namespace, Labels: si.Endpoint.Labels},
    	}
    
    	// We got an instance update, which probably effects EDS. However, EDS is keyed by Hostname. We need to find all
    	// Hostnames (services) that were updated and recompute them
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  7. src/image/image.go

    // Registration is typically automatic as a side effect of initializing that
    // format's package so that, to decode a PNG image, it suffices to have
    //
    //	import _ "image/png"
    //
    // in a program's main package. The _ means to import a package purely for its
    // initialization side effects.
    //
    // See "The Go image package" for more details:
    // https://golang.org/doc/articles/image_package.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/obj6.go

    type rwMask int
    
    const (
    	readFrom rwMask = 1 << iota
    	readTo
    	readReg
    	readFrom3
    	writeFrom
    	writeTo
    	writeReg
    	writeFrom3
    )
    
    // progRW returns a mask describing the effects of the instruction p.
    // Note: this isn't exhaustively accurate. It is only currently used for detecting
    // reads/writes to R15, so SSE register behavior isn't fully correct, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  9. src/runtime/runtime2.go

    	// must be set. An idle P (passed to pidleput) cannot add new timers while
    	// idle, so if it has no timers at that time, its mask may be cleared.
    	//
    	// Thus, we get the following effects on timer-stealing in findrunnable:
    	//
    	//   - Idle Ps with no timers when they go idle are never checked in findrunnable
    	//     (for work- or timer-stealing; this is the ideal case).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  10. pkg/util/taints/taints_test.go

    			expectedResult: true,
    		},
    		{
    			name:           "different key",
    			taintToFind:    &v1.Taint{Key: "no_such_key", Value: "bar_1", Effect: v1.TaintEffectNoExecute},
    			expectedResult: false,
    		},
    		{
    			name:           "different effect",
    			taintToFind:    &v1.Taint{Key: "foo_1", Value: "bar_1", Effect: v1.TaintEffectNoSchedule},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
Back to top