Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 926 for effects (0.18 sec)

  1. src/syscall/exec_linux.go

    		}
    		gidmap = formatIDMappings(sys.GidMappings)
    	}
    
    	// Record parent PID so child can test if it has died.
    	ppid, _ := rawSyscallNoError(SYS_GETPID, 0, 0, 0)
    
    	// Guard against side effects of shuffling fds below.
    	// Make sure that nextfd is beyond any currently open files so
    	// that we can't run the risk of overwriting any of them.
    	fd := make([]int, len(attr.Files))
    	nextfd = len(attr.Files)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

    // empty optional.
    static std::optional<ValuesConstraintSet> CanBeClustered(
        Operation *op, const ClusteringPolicySet &policies,
        const std::function<bool(Operation *op)> &filter) {
      // Check that op has no side effects. This guarantees that we will not
      // reorder side-effecting ops during cluster formation.
      if (!isMemoryEffectFree(op)) return std::nullopt;
    
      // Operation rejected by the custom filter.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. src/runtime/hash_test.go

    	// input bit i affects output bit j.
    	grid := make([][hashSize]int, n)
    
    	for z := 0; z < REP; z++ {
    		// pick a random key, hash it
    		k.random(r)
    		h := k.hash()
    
    		// flip each bit, hash & compare the results
    		for i := 0; i < n; i++ {
    			k.flipBit(i)
    			d := h ^ k.hash()
    			k.flipBit(i)
    
    			// record the effects of that bit flip
    			g := &grid[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

          // CHECK: [[IDENTITY_OUTPUT:%.+]], [[IDENTITY_CONTROL:%.+]] = tf_executor.island wraps "tf.Identity"
          %2 = "tf.Identity"(%1) {device = ""} : (tensor<i32>) -> tensor<i32>
    
          // The side effects of the If op might not be executed without an
          // explicit control dependency on the tf.If op, due to the way the
          // LowerFunctionalOpsPass in TF operates (b/185483669). Check that we
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 28.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    Note, since this has other performance impacts and potentially side effects, by triggering all jar tasks at compile time, it is only recommended to activate this if you suffer from the described performance issue on Windows.
    
    [[sec:library_distribution]]
    == Distributing a library
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. src/runtime/traceruntime.go

    	lockInit(&trace.typeTab[0].tab.mem.lock, lockRankTraceTypeTab)
    	lockInit(&trace.typeTab[1].tab.mem.lock, lockRankTraceTypeTab)
    	lockInit(&trace.lock, lockRankTrace)
    }
    
    // lockRankMayTraceFlush records the lock ranking effects of a
    // potential call to traceFlush.
    //
    // nosplit because traceAcquire is nosplit.
    //
    //go:nosplit
    func lockRankMayTraceFlush() {
    	lockWithRankMayAcquire(&trace.lock, getLockRank(&trace.lock))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top