Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,217 for poop (0.18 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/NestedConfigureDslIntegrationTest.groovy

            buildFile << """
    ext.prop = "value 1"
    repositories {
        assert prop == "value 1"
        prop = "value 2"
        maven {
            assert prop == "value 2"
            prop = "value 3"
            1.times {
                assert prop == "value 3"
                prop = "value 4"
                authentication {
                    assert prop == "value 4"
                    prop = "value 5"
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/while_gradients.cc

      for (int i = 0; i < n; ++i) result.push_back(ToOutput(output_tensors[i]));
      return result;
    }
    
    // The backprop loop counter and main backprop loop run in their own execution
    // frame (conceptually, the main forward loop and forward loop counter run
    // together in a frame, then the backprop loop counter and backprop loop run
    // together in a different frame). This returns the frame name to use for the
    // backprop while loops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/policy_static.go

    //     and grows, accordingly. This is stored in the state as the default
    //     CPU set.
    //
    //   - RESERVED: A subset of the shared pool which is not exclusively
    //     allocatable. The membership of this pool is static for the lifetime of
    //     the Kubelet. The size of the reserved pool is
    //     ceil(systemreserved.cpu + kubereserved.cpu).
    //     Reserved CPUs are taken topologically starting with lowest-indexed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  4. src/runtime/mcentral.go

    	// still has very poor throughput. We could instead keep a
    	// running free-to-used budget and switch to fresh span
    	// allocation if the budget runs low.
    	spanBudget := 100
    
    	var s *mspan
    	var sl sweepLocker
    
    	// Try partial swept spans first.
    	sg := mheap_.sweepgen
    	if s = c.partialSwept(sg).pop(); s != nil {
    		goto havespan
    	}
    
    	sl = sweep.active.begin()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/initialization/DefaultGradlePropertiesLoaderTest.groovy

            1 * environment.propertiesFile(fromDir(settingsDir)) >> ["prop": "settings value"]
    
            when:
            def properties = loadAndMergePropertiesWith(emptyMap())
    
            then:
            "user value" == properties["prop"]
        }
    
        def userPropertiesFileHasPrecedenceOverProjectProperties() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 06 11:52:10 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/graph_pruning_preserve_ops.mlir

    // CHECK-LABEL: func @preserve_unreachable_tpu_replicate_metadata
    func.func @preserve_unreachable_tpu_replicate_metadata() {
      tf_executor.graph {
        %0 = tf_executor.ControlTrigger {}
        // CHECK: "tf.NoOp"
        %1 = tf_executor.island wraps "tf.NoOp"() : () -> ()
        // CHECK: "tf.TPUReplicateMetadata"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseDslIntegrationSpec.groovy

            code << [
                    "id('noop')",
                    "id 'noop'",
                    "id('noop').version('bar')",
                    "id 'noop' version 'bar'",
                    "id('noop').\nversion 'bar'",
                    "id('java');id('noop')",
                    "id('java')\nid('noop')",
                    "id('noop').version('bar');id('java')",
                    "id('noop').version('bar')\nid('java')",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/doc.go

    // Package loopclosure defines an Analyzer that checks for references to
    // enclosing loop variables from within nested functions.
    //
    // # Analyzer loopclosure
    //
    // loopclosure: check references to loop variables from within nested functions
    //
    // This analyzer reports places where a function literal references the
    // iteration variable of an enclosing loop, and the loop calls the function
    // in such a way (e.g. with go or defer) that it may outlive the loop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. test/escape_goto.go

    package escape
    
    var x bool
    
    func f1() {
    	var p *int
    loop:
    	if x {
    		goto loop
    	}
    	// BAD: We should be able to recognize that there
    	// aren't any more "goto loop" after here.
    	p = new(int) // ERROR "escapes to heap"
    	_ = p
    }
    
    func f2() {
    	var p *int
    	if x {
    	loop:
    		goto loop
    	} else {
    		p = new(int) // ERROR "does not escape"
    	}
    	_ = p
    }
    
    func f3() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:41:07 UTC 2021
    - 677 bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/initialization/ProjectPropertySettingBuildLoaderTest.groovy

            1 * gradleProperties.mergeProperties([prop: 'childValue']) >> [prop: 'childValue']
            1 * rootProperties.set('prop', 'rootValue')
            1 * childProperties.set('prop', 'childValue')
        }
    
        def "defines project properties from Project class"() {
            given:
            2 * gradleProperties.mergeProperties([:]) >> [version: '1.0']
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:58 UTC 2022
    - 4.9K bytes
    - Viewed (0)
Back to top