Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 102 for get2s (0.13 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

                }
            }
    
            def scope = registry.root.getLink("beans")
            scope.applyToSelf(rules)
    
            expect:
            // Rule gets applied to node in scope
            registry.realize("beans.bean2", Bean).name == "bean"
    
            // Rule doesn't get applied to node outside scope
            registry.realize("bean1", Bean).name == "bean1 unmodified"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                        }
                    }
                }
            }
        }
    
        // resolve constant-looking expressions statically (do here as gets transformed away later)
        private Expression transformInlineConstants(Expression exp) {
            if (exp instanceof PropertyExpression) {
                PropertyExpression pe = (PropertyExpression) exp;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            when:
            file("res/foo.txt") << "bar"
    
            buildScript """
                interface Services {
                    @Inject FileSystemOperations getFs()
                }
                task copyAction {
                    def fs = objects.newInstance(Services).fs
                    def source = 'res'
                    doLast {
                        fs.copy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  4. cmd/bucket-handlers.go

    	}))
    
    	// Write success response.
    	writeSuccessResponseHeadersOnly(w)
    }
    
    // GetBucketObjectLockConfigHandler - GET Bucket object lock configuration.
    // ----------
    // Gets the Object Lock configuration for a bucket. The rule specified in
    // the Object Lock configuration will be applied by default to every new
    // object placed in the specified bucket.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier.go

    						// The nft docs say "dynamic" is only
    						// needed for sets containing stateful
    						// objects (eg counters), but (at least on
    						// RHEL8) if we create the set without
    						// "dynamic", it later gets mutated to
    						// have it, and then the next attempt to
    						// tx.Add() it here fails because it looks
    						// like we're trying to change the flags.
    						knftables.DynamicFlag,
    						knftables.TimeoutFlag,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    //     calls `req2.Finish`, which is expected to return after the context cancel.
    //  7. The queueset interface allows StartRequest 2 to return `nil` in this situation,
    //     if the scheduler gets the cancel done before StartRequest finishes;
    //     the test handles this without regard to whether the implementation will ever do that.
    //  8. Check that the above took exactly 1 second.
    func TestContextCancel(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	// is not existing
    	require.ErrorContains(t, err,
    		"no params found for policy binding with `Deny` parameterNotFoundAction")
    	require.Len(t, passedParams, 0)
    }
    
    // Show that policy still gets evaluated with `nil` param if paramRef & namespaceParamRef
    // are both unset
    func TestEmptyParamRef(t *testing.T) {
    	compiler := &fakeCompiler{}
    	matcher := &fakeMatcher{
    		DefaultMatch: true,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      if (has_dynamic_outputs) {
        return GetAllExternalOperands(cluster_ops);
      } else {
        return GetStaticExternalOperands(device_cluster, cluster_ops);
      }
    }
    
    // Gets all outputs that need to be communicated from host->device.
    void GetExternalOutputs(const llvm::SmallSetVector<Operation*, 4>& cluster_ops,
                            llvm::SmallSetVector<Value, 4>& external_outputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    For example, the following
    
    ```mlir
    tf_device.replicate([%0, %1] as %ri: tensor<*xi32>) {n = 2 : i32} {
      %2 = "tf.Shape"(%ri) : (tensor<*xi32>) -> tensor<?xi32>
      tf_device.return
    }
    ```
    
    gets converted to
    
    ```mlir
    tf_device.replicate([%0, %1] as %ri: tensor<*xi32>) {n = 2 : i32} {
      %2 = "tf.Shape"(%0) : (tensor<*xi32>) -> tensor<?xi32>
      tf_device.return
    }
    ```
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  10. src/cmd/dist/build.go

    		// Only use the VERSION file if it is non-empty.
    		if b != "" {
    			return b
    		}
    	}
    
    	// The $GOROOT/VERSION.cache file is a cache to avoid invoking
    	// git every time we run this command. Unlike VERSION, it gets
    	// deleted by the clean command.
    	path = pathf("%s/VERSION.cache", goroot)
    	if isfile(path) {
    		return chomp(readfile(path))
    	}
    
    	// Show a nicer error message if this isn't a Git repo.
    	if !isGitRepo() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top