Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 558 for effects (0.11 sec)

  1. pkg/kubelet/kubelet_node_status.go

    		// TODO(mtaufen): I decided not to move this setter for now, since all it does is send an event
    		// and record state back to the Kubelet runtime object. In the future, I'd like to isolate
    		// these side-effects by decoupling the decisions to send events and partial status recording
    		// from the Node setters.
    		kl.recordNodeSchedulableEvent,
    	)
    	return setters
    }
    
    // Validate given node IP belongs to the current host
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/resolver.go

    	if check.conf.IgnoreFuncBodies {
    		return
    	}
    
    	// spec: "It is illegal (...) to directly import a package without referring to
    	// any of its exported identifiers. To import a package solely for its side-effects
    	// (initialization), use the blank identifier as explicit package name."
    
    	for _, obj := range check.imports {
    		if !obj.used && obj.name != "_" {
    			check.errorUnusedPkg(obj)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. src/go/types/resolver.go

    	if check.conf.IgnoreFuncBodies {
    		return
    	}
    
    	// spec: "It is illegal (...) to directly import a package without referring to
    	// any of its exported identifiers. To import a package solely for its side-effects
    	// (initialization), use the blank identifier as explicit package name."
    
    	for _, obj := range check.imports {
    		if !obj.used && obj.name != "_" {
    			check.errorUnusedPkg(obj)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. doc/go_mem.html

    any synchronization event, so it is not guaranteed to be
    observed by any other goroutine.
    In fact, an aggressive compiler might delete the entire <code>go</code> statement.
    </p>
    
    <p>
    If the effects of a goroutine must be observed by another goroutine,
    use a synchronization mechanism such as a lock or channel
    communication to establish a relative ordering.
    </p>
    
    <h3 id="chan">Channel communication</h3>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top