Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 149 for CL (0.02 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            buildTestFixture.singleProjectBuild(projectName, cl)
        }
    
        def multiProjectBuild(String projectName, List<String> subprojects, @DelegatesTo(value = BuildTestFile, strategy = Closure.DELEGATE_FIRST) Closure cl = {}) {
            multiProjectBuild(projectName, subprojects, CompiledLanguage.JAVA, cl)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/DefaultIsolatedAntBuilder.java

            try {
                Object project = getProject(antBuilder);
                Class<?> projectClass = project.getClass();
                ClassLoader cl = projectClass.getClassLoader();
                Class<?> buildListenerClass = cl.loadClass("org.apache.tools.ant.BuildListener");
                Method addBuildListener = projectClass.getDeclaredMethod("addBuildListener", buildListenerClass);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 02 18:37:54 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/preemption/preemption.go

    // the list.
    func (cl *candidateList) size() int32 {
    	n := atomic.LoadInt32(&cl.idx) + 1
    	if n >= int32(len(cl.items)) {
    		n = int32(len(cl.items))
    	}
    	return n
    }
    
    // get returns the internal candidate array. This function is NOT atomic and
    // assumes that all add() operations have been completed.
    func (cl *candidateList) get() []Candidate {
    	return cl.items[:cl.size()]
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/metaobject/BeanDynamicObjectTest.groovy

        }
    
        def "can get property of closure delegate via closure instance"() {
            def bean = new BeanWithDynamicProperties(prop: "value")
            def cl = {}
            cl.delegate = bean
            def dynamicObject = new BeanDynamicObject(cl)
    
            expect:
            dynamicObject.getProperty("prop") == "value"
            dynamicObject.getProperty("dyno") == "ok"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/import_quant_stats_pass.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/location_utils.h"
    
    // NOLINTNEXTLINE
    static llvm::cl::opt<std::string> quantize_stats(
        "quant-test-stats", llvm::cl::value_desc("string"),
        llvm::cl::desc("serialized quant info string. Only used in tests"),
        llvm::cl::init(""));
    
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

     private:
      Option<bool> skip_raise_cpu_ops_{
          *this, "skip-raise-cpu-ops",
          llvm::cl::desc("Whether to cluster and raise CPU ops."),
          llvm::cl::init(false)};
    
      Option<bool> ignore_inference_type_{
          *this, "ignore-inference-type",
          llvm::cl::desc("Whether to ignore the inference type in clustering."),
          llvm::cl::init(false)};
    
      llvm::StringRef getArgument() const final {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDefinitionIntegrationTest.groovy

                addTaskWithMap('g')
                ext.cl = { String taskNameParam -> task taskNameParam }
                cl.call('h')
                cl = { String taskNameParam -> task(taskNameParam) { ext.property = 'value' } }
                cl.call('i')
                assert 'value' == f.property
                assert 'value' == i.property
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 14:43:53 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. pilot/test/xdstest/extract.go

    		if err := r.UnmarshalTo(u); err != nil {
    			t.Fatal(err)
    		}
    		un = append(un, u)
    	}
    	return un
    }
    
    func FilterClusters(cl []*cluster.Cluster, f func(c *cluster.Cluster) bool) []*cluster.Cluster {
    	res := make([]*cluster.Cluster, 0, len(cl))
    	for _, c := range cl {
    		if f(c) {
    			res = append(res, c)
    		}
    	}
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

                    synchronized (this) {
                        Class<?> cl = findLoadedClass(name);
                        if (cl == null) {
                            cl = findClass(name);
                        }
                        if (resolve) {
                            resolveClass(cl);
                        }
                        return cl;
                    }
                }
                return super.loadClass(name, resolve);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderRegistry.java

                    for (WeakReference<ClassLoader> reference : localClassLoaderMapping.classLoaders) {
                        ClassLoader cl = reference.get();
                        if (cl != null) {
                            localCandidates.add(cl);
                        }
                    }
                    if (localCandidates.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top