Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,400 for addSdk (0.12 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/VariantFilesMetadataRulesTest.groovy

            artifacts.size() == 3
            artifacts[0].id.displayName == 'producer-1.0.jar (org.test:producer:1.0)'
            artifacts[1].id.displayName == 'added1.zip (org.test:producer:1.0)'
            artifacts[2].id.displayName == 'added2 (org.test:producer:1.0)'
    
            artifacts[1].relativeUrl == 'added1.zip'
            artifacts[2].relativeUrl == '../path.jar'
    
            artifacts[0] instanceof DefaultModuleComponentArtifactMetadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. test/codegen/floats.go

    // For codegen tests on integer types, see arithmetic.go.
    
    // --------------------- //
    //    Strength-reduce    //
    // --------------------- //
    
    func Mul2(f float64) float64 {
    	// 386/sse2:"ADDSD",-"MULSD"
    	// amd64:"ADDSD",-"MULSD"
    	// arm/7:"ADDD",-"MULD"
    	// arm64:"FADDD",-"FMULD"
    	// ppc64x:"FADD",-"FMUL"
    	// riscv64:"FADDD",-"FMULD"
    	return f * 2.0
    }
    
    func DivPow2(f1, f2, f3 float64) (float64, float64, float64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_compat_added.txt

    	example.net/lazy v0.1.0 => ./lazy
    	example.net/pruned v0.1.0 => ./pruned
    )
    
    require example.net/lazy v0.1.0
    -- m.go --
    package m
    
    import (
    	_ "example.net/added"
    	_ "example.net/lazy"
    )
    
    -- a1/go.mod --
    module example.net/added
    
    go 1.17
    -- a2/go.mod --
    module example.net/added
    
    go 1.17
    -- a2/added.go --
    package added
    
    -- lazy/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/CharUtil.java

                    || c == ':' // added
                    || c == '/' // added
                    || c == '+' // added
                    || c == '%' // added
                    || c == '=' // added
                    || c == '&' // added
                    || c == '?' // added
                    || c == '#' // added
                    || c == '[' // added
                    || c == ']' // added
                    || c == '@' // added
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

         * The behavior of this repository is otherwise the same as those added by {@link #maven(org.gradle.api.Action)}.
         * <p>
         * Examples:
         * <pre class='autoTestedWithDeprecations'>
         * repositories {
         *     jcenter()
         * }
         * </pre>
         *
         * @return the added resolver
         * @see #jcenter(Action)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/environment/base_test.go

    			if !ok {
    				versionTracking = &versionTracker{}
    				tracked[name] = versionTracking
    			}
    			if versionTracking.added != nil {
    				t.Errorf("Did not expect %s library to be added again at version %v. It was already added at version %v", name, vop.IntroducedVersion, versionTracking.added)
    			} else {
    				versionTracking.added = vop.IntroducedVersion
    				if versionTracking.removed != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/events.go

    	PodUpdate = "PodUpdate"
    )
    
    var (
    	// AssignedPodAdd is the event when a pod is added that causes pods with matching affinity terms
    	// to be more schedulable.
    	AssignedPodAdd = framework.ClusterEvent{Resource: framework.Pod, ActionType: framework.Add, Label: "AssignedPodAdd"}
    	// NodeAdd is the event when a new node is added to the cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/par/work.go

    	mu      sync.Mutex
    	added   map[T]bool // items added to set
    	todo    []T        // items yet to be run
    	wait    sync.Cond  // wait when todo is empty
    	waiting int        // number of runners waiting for todo
    }
    
    func (w *Work[T]) init() {
    	if w.added == nil {
    		w.added = make(map[T]bool)
    	}
    }
    
    // Add adds item to the work set, if it hasn't already been added.
    func (w *Work[T]) Add(item T) {
    	w.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:54:54 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. pkg/kube/inject/watcher_test.go

    	steps := []struct {
    		added   *v1.ConfigMap
    		updated *v1.ConfigMap
    		deleted *v1.ConfigMap
    	}{
    		{added: cm},
    
    		// Handle misconfiguration errors.
    		{updated: badCM},
    		{updated: cm},
    		{updated: badCM2},
    		{updated: badCM},
    		{updated: cm},
    		{updated: badCM3},
    		{updated: cm},
    
    		// Handle deletion.
    		{deleted: cm},
    		{added: cm},
    	}
    
    	for i, step := range steps {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ExecutionList.java

     * that every {@code Runnable} that is {@linkplain #add added} will be executed after {@link
     * #execute()} is called. Any {@code Runnable} added after the call to {@code execute} is still
     * guaranteed to execute. There is no guarantee, however, that listeners will be executed in the
     * order that they are added.
     *
     * <p>Exceptions thrown by a listener will be propagated up to the executor. Any exception thrown
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top