Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,637 for need (0.1 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/ExecActionFactory.java

         * If you need to make the action visible to the DSL, use {@link org.gradle.process.ExecOperations} instead.
         */
        ExecAction newExecAction();
    
        /**
         * Creates a {@link JavaExecAction} that is not decorated. Use this when the action is not made visible to the DSL.
         * If you need to make the action visible to the DSL, use {@link org.gradle.process.ExecOperations} instead.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. architecture/standards/0002-avoid-using-java-serialization.md

    # ADR-0002 - Avoid using Java serialization
    
    ## Date
    
    2012-12-01
    
    ## Context
    
    In Gradle we often need to serialize in-memory objects for caching, or to transmit them across process barriers, etc.
    Java serialization is one way to implement this, however, despite its simplicity of implementation, it has several drawbacks:
    
    - **Performance:**
    Java's built-in serialization mechanism is often slower compared to other serialization solutions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsDslIntegrationSpec.groovy

            succeeds('help')
        }
    
        def "Can type-safely use ExtensionAware with the Kotlin DSL"() {
            when:
            // Need to use settings.extra because Kotlin DSL needs to be re-compiled
            def answerFile = "answerHolder.settings.gradle.kts"
    
            // Need to use settings because Kotlin DSL needs to be re-compiled
            testDirectory.file(answerFile) << """
            val theAnswer: () -> Int by settings.extra {
                { 42 }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:15:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/config/builder.go

    			// If the caller set namespaces with literal strings, replace with namespace.Instance objects.
    			s = replaceNamespaceStrings(s)
    
    			tpl := s.TemplateOrFail(out.t)
    			need := tpl.MissingParams(s.Params())
    			needFrom := need.Contains(param.From.String())
    			needTo := need.Contains(param.To.String())
    
    			if needFrom && needTo {
    				out.needFromAndTo = append(out.needFromAndTo, s)
    			} else if needFrom {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  5. hack/verify-shellcheck.sh

    # ensure we're linting the k8s source tree
    cd "${KUBE_ROOT}"
    
    scripts_to_check=("$@")
    if [[ "$#" == 0 ]]; then
      # Find all shell scripts excluding:
      # - Anything git-ignored - No need to lint untracked files.
      # - ./_* - No need to lint output directories.
      # - ./.git/* - Ignore anything in the git object store.
      # - ./vendor* - Vendored code should be fixed upstream instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/impl/iostream.cc

    limitations under the License.
    ==============================================================================*/
    // Specializations of ostream::operator<< for API values. These are defined here
    // so that they don't need to be linked in executables that need to be kept
    // small (and don't use the functionality).
    #include <iostream>
    
    #include "tensorflow/cc/experimental/libtf/impl/none.h"
    #include "tensorflow/cc/experimental/libtf/impl/string.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 09 21:11:15 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  7. tensorflow/cc/ops/while_loop.h

    // Function that takes cond graph inputs and returns cond graph boolean output.
    // 'output' need not be set if an error is returned.
    typedef std::function<Status(const Scope&, const std::vector<Output>& inputs,
                                 Output* output)>
        CondGraphBuilderFn;
    
    // Function that takes body graph inputs and returns body graph outputs.
    // 'outputs' need not be populated if an error is returned.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 24 08:24:58 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  8. test/fixedbugs/bug284.go

    	}
    	var x1 X1
    	var x2 X2
    	x0 = x0
    	x0 = x1
    	x0 = interface {
    		f() int
    	}(x2) // ERROR "cannot|need type assertion|incompatible"
    	x1 = x0
    	x1 = x1
    	x1 = X1(x2) // ERROR "cannot|need type assertion|incompatible"
    	x2 = X2(x0) // ERROR "cannot|need type assertion|incompatible"
    	x2 = X2(x1) // ERROR "cannot|need type assertion|incompatible"
    	x2 = x2
    
    	type L1 []int
    	type L2 []NewInt
    	var l0 []int
    	var l1 L1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:59 UTC 2012
    - 3.5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java

    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    
    // TODO lifecycles being executed
    // TODO what runs in each phase
    // TODO plugins that need downloading
    // TODO project dependencies that need downloading
    // TODO unfortunately the plugins need to be downloaded in order to get the plugin.xml file. need to externalize this
    //      from the plugin archive.
    // TODO this will be the class that people get in IDEs to modify
    
    /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. cmd/data-usage.go

    	}
    	// For forward compatibility reasons, we need to add this code.
    	if len(dataUsageInfo.BucketsUsage) == 0 {
    		dataUsageInfo.BucketsUsage = make(map[string]BucketUsageInfo, len(dataUsageInfo.BucketSizes))
    		for bucket, size := range dataUsageInfo.BucketSizes {
    			dataUsageInfo.BucketsUsage[bucket] = BucketUsageInfo{Size: size}
    		}
    	}
    
    	// For backward compatibility reasons, we need to add this code.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top