Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 558 for effects (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    When task relationships need to be established (i.e., `dependsOn`, `finalizedBy`, `mustRunAfter`, `shouldRunAfter`), a distinction can be made between soft and strong relationships.
    Their effects on task creation during the configuration phase differ:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. pkg/volume/csi/nodeinfomanager/nodeinfomanager.go

    // which is modified by applying the given update functions sequentially.
    // Because updateFuncs are applied sequentially, later updateFuncs should take into account
    // the effects of previous updateFuncs to avoid potential conflicts. For example, if multiple
    // functions update the same field, updates in the last function are persisted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  3. src/runtime/mfinal.go

    	1<<0 | 0<<1 | 1<<2 | 1<<3 | 1<<4 | 1<<5 | 0<<6 | 1<<7,
    	1<<0 | 1<<1 | 1<<2 | 0<<3 | 1<<4 | 1<<5 | 1<<6 | 1<<7,
    	0<<0 | 1<<1 | 1<<2 | 1<<3 | 1<<4 | 0<<5 | 1<<6 | 1<<7,
    }
    
    // lockRankMayQueueFinalizer records the lock ranking effects of a
    // function that may call queuefinalizer.
    func lockRankMayQueueFinalizer() {
    	lockWithRankMayAcquire(&finlock, getLockRank(&finlock))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/math/rand/rand.go

    	m := make([]int, n)
    	// In the following loop, the iteration when i=0 always swaps m[0] with m[0].
    	// A change to remove this useless iteration is to assign 1 to i in the init
    	// statement. But Perm also effects r. Making this change will affect
    	// the final state of r. So this change can't be made for compatibility
    	// reasons for Go 1.
    	for i := 0; i < n; i++ {
    		j := r.Intn(i + 1)
    		m[i] = m[j]
    		m[j] = i
    	}
    	return m
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

    
    internal
    enum class StateType(val encryptable: Boolean = false) {
        /**
         * Contains the state for the entire build.
         */
        Work(true),
    
        /**
         * Contains the side effects observed during the creation of the [Model].
         */
        ModelSideEffects(true),
    
        /**
         * Contains the model objects sent back to the IDE in response to a TAPI request.
         */
        Model(true),
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top