Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,105 for happens (1.94 sec)

  1. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/execution/BuildSessionLifecycleBuildActionExecutor.java

                    // Note: throw the failure rather than returning a result object containing the failure, as console failure logging based on the _result_ happens down in the root build scope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/BuildTreeLifecycleBuildActionExecutor.java

                    // Note: throw the failure rather than returning a result object containing the failure, as console failure logging based on the _result_ happens down in the root build scope
                    // whereas console failure logging based on the _thrown exception_ happens up outside session scope. It would be better to refactor so that a result can be returned from here
                    throw UncheckedException.throwAsUncheckedException(t);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/remove_var_init_by_const.mlir

      // CHECK-NEXT: "tf.AssignVariableOp"(%[[HASH_TABLE]], %[[CST]])
    }
    
    // -----
    
    
    // Nothing happens when there are no `tf_saved_model.session_initializer`.
    
    // CHECK-LABEL: module
    module attributes {tf_saved_model.semantics} {
    }
    
    // -----
    
    // Nothing happens when there are no initializer functions.
    
    // CHECK-LABEL: module
    module attributes {tf_saved_model.semantics} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/promise/promise.go

    //
    // If `initial` is non-nil then that value is Set at creation time.
    //
    // If a `Get` is waiting soon after the channel associated with the
    // `doneCtx` becomes selectable (which never happens for the nil
    // channel) then `Set(doneVal)` effectively happens at that time.
    func NewWriteOnce(initial interface{}, doneCtx context.Context, doneVal interface{}) WriteOnce {
    	p := &promise{
    		doneCtx: doneCtx,
    		doneVal: doneVal,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 19:19:31 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/BuildCompletionNotifyingBuildActionRunner.java

            } catch (Throwable t) {
                // Note: throw the failure rather than returning a result object containing the failure, as console failure logging based on the _result_ happens down in the root build scope
                // whereas console failure logging based on the _thrown exception_ happens up outside session scope. It would be better to refactor so that a result can be returned from here
                notifyEnterprisePluginManager(Result.failed(t));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. src/runtime/heap_test.go

    import (
    	"testing"
    	_ "unsafe"
    )
    
    //go:linkname heapObjectsCanMove runtime.heapObjectsCanMove
    func heapObjectsCanMove() bool
    
    func TestHeapObjectsCanMove(t *testing.T) {
    	if heapObjectsCanMove() {
    		// If this happens (or this test stops building),
    		// it will break go4.org/unsafe/assume-no-moving-gc.
    		t.Fatalf("heap objects can move!")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 18:35:49 UTC 2023
    - 529 bytes
    - Viewed (0)
  7. pkg/test/util/yml/parts.go

    	for _, cfg := range cfgs {
    		var m metav1.ObjectMeta
    		if e := yaml.Unmarshal([]byte(cfg), &m); e != nil {
    			// Ignore invalid parts. This most commonly happens when it's empty or contains only comments.
    			continue
    		}
    		result = append(result, m)
    	}
    	return result
    }
    
    // SplitString splits the given yaml doc if it's multipart document.
    func SplitString(yamlText string) []string {
    	out := make([]string, 0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  8. doc/go_mem.html

    which are unordered by happens before
    (that is, neither <i>r</i> happens before <i>w</i>
    nor <i>w</i> happens before <i>r</i>).
    </p>
    
    <p>
    A <i>write-write data race</i> on memory location <i>x</i>
    consists of two write-like memory operations <i>w</i> and <i>w'</i> on <i>x</i>,
    at least one of which is non-synchronizing,
    which are unordered by happens before.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/waitgroup.go

    // when invoked from multiple goroutines.
    type RequestWaitGroup interface {
    	// Add adds delta, which may be negative, similar to sync.WaitGroup.
    	// If Add with a positive delta happens after Wait, it will return error,
    	// which prevent unsafe Add.
    	Add(delta int) error
    
    	// Done decrements the WaitGroup counter.
    	Done()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 10 21:18:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/Manifest.java

         * {@link org.gradle.api.java.archives.Manifest} or a file path as interpreted by {@link org.gradle.api.Project#file(Object)}.
         *
         * The merge is not happening instantaneously. It happens either before writing or when {@link #getEffectiveManifest()}
         * is called.
         *
         * @return this
         */
        Manifest from(Object... mergePath);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top