Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 951 for markUsed (0.29 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileAccess.java

        /**
         * Runs the given action under an exclusive lock on the target file. If the given action fails, the lock is marked as uncleanly unlocked.
         *
         * @throws LockTimeoutException On timeout acquiring lock, if required.
         * @throws IllegalStateException When this lock has been closed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. test/fixedbugs/issue24651b.go

    	return x * (x + 1) * (x + 2)
    }
    
    var x = 5
    
    //go:noinline Provide a clean, constant reason for not inlining main
    func main() { // ERROR "cannot inline main: marked go:noinline$"
    	println("Foo(", x, ")=", Foo(x)) // ERROR "inlining call to Foo"
    	println("Bar(", x, ")=", Bar(x)) // ERROR "inlining call to Bar"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 27 23:40:56 UTC 2021
    - 800 bytes
    - Viewed (0)
  3. src/runtime/unsafepoint_test.go

    		instructionCount++
    		if unsafe {
    			unsafeCount++
    		}
    
    		// All the instructions inside the write barrier must be unpreemptible.
    		if startedWB && !doneWB && !unsafe {
    			t.Errorf("instruction %s must be marked unsafe, but isn't", parts[1])
    		}
    
    		// Detect whether we're in the write barrier.
    		switch runtime.GOARCH {
    		case "arm64":
    			if parts[3] == "MOVWU" {
    				// The unpreemptible region starts after the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 20:24:56 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass.h

    // 4. Mark all nodes except key placeholder with attr `xla_cluster_attr_name`
    //    and `outside_compilation_attr_name`;
    // 5. For nodes marked with attr kXlaConnectedToXlaComputationAttrName, add a
    //    control edge from the node to XlaSendFromHost; for nodes marked with attr
    //    kXlaConnectedFromXlaComputationAttrName, add a control edge from
    //    XlaRecvAtHost node to the node;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. src/cmd/internal/src/xpos.go

    }
    
    // WithNotStmt returns the same location to be marked with DWARF is_stmt=0
    func (p XPos) WithNotStmt() XPos {
    	p.lico = p.lico.withNotStmt()
    	return p
    }
    
    // WithDefaultStmt returns the same location with undetermined is_stmt
    func (p XPos) WithDefaultStmt() XPos {
    	p.lico = p.lico.withDefaultStmt()
    	return p
    }
    
    // WithIsStmt returns the same location to be marked with DWARF is_stmt=1
    func (p XPos) WithIsStmt() XPos {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. test/alg.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file tests that required algs are generated,
    // even when similar types have been marked elsewhere
    // as not needing algs. See CLs 19769 and 19770.
    
    package main
    
    import "fmt"
    
    //go:noinline
    func f(m map[[8]string]int) int {
    	var k [8]string
    	return m[k]
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 24 21:36:52 UTC 2016
    - 822 bytes
    - Viewed (0)
  7. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerResultIntegrationTest.groovy

    @InspectsExecutedTasks
    @Requires(value = IntegTestPreconditions.NotEmbeddedExecutor, reason = "Test causes builds to hang")
    class GradleRunnerResultIntegrationTest extends BaseGradleRunnerIntegrationTest {
    
        def "execute task actions marked as up-to-date or skipped"() {
            given:
            buildFile << """
                task helloWorld
    
                task byeWorld {
                    onlyIf {
                        false
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. internal/ioutil/ioutil_test.go

    	if writer.HasWritten() {
    		t.Error("WriteOnCloser must not be marked as HasWritten")
    	}
    	writer.Write(nil)
    	if !writer.HasWritten() {
    		t.Error("WriteOnCloser must be marked as HasWritten")
    	}
    
    	writer = WriteOnClose(io.Discard)
    	writer.Close()
    	if !writer.HasWritten() {
    		t.Error("WriteOnCloser must be marked as HasWritten")
    	}
    }
    
    // Test for AppendFile.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	//
    	// Deprecated: Marked as deprecated in pkg/apis/istio/v1alpha1/values_types.proto.
    	Memory *TargetUtilizationConfig `protobuf:"bytes,4,opt,name=memory,proto3" json:"memory,omitempty"`
    	// K8s utilization setting for HorizontalPodAutoscaler target.
    	//
    	// See https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  10. src/regexp/testdata/README

        not once.  This is consistent with (a*)* matching a, which
        runs the starred subexpression one time, not twice.
      * The submatch choice is first match, not the POSIX rule.
    
    Such changes are marked with 'RE2/Go'.
    
    
    RE2 Test Files
    
    re2-exhaustive.txt.bz2 and re2-search.txt are built by running
    'make log' in the RE2 distribution https://github.com/google/re2/
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 27 20:18:25 UTC 2015
    - 957 bytes
    - Viewed (0)
Back to top