Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 188 for minimizeC (0.25 sec)

  1. android/guava/src/com/google/common/collect/ObjectCountLinkedHashMap.java

     * iteration order, and uses arrays to store key objects and count values. Comparing to using a
     * traditional {@code LinkedHashMap} implementation which stores keys and count values as map
     * entries, {@code ObjectCountLinkedHashMap} minimizes object allocation and reduces memory
     * footprint.
     */
    @GwtCompatible(serializable = true, emulated = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    To reduce the time spent searching for dependencies, declare the repository hosting
    the largest number of your dependencies first. This minimizes the number of network requests
    required to resolve all dependencies.
    
    === Minimize repository count
    
    Limit the number of declared repositories to the minimum possible for your build to work.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/getting-to-container-configured-mojos.apt

      We may need to enable the context injection here, since this will be
      instantiated per-project. If we always inject the same context parameters,
      and are careful to inject nulls where things are missing, we should be
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 30 15:20:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    //      detail on how and why this is done there.
    //   2. Rewrite (CMPconst [0] (Select0 (OpCC ...))) into (Select1 (OpCC...))
    // Note: to minimize potentially expensive regeneration of CC opcodes during the flagalloc pass, only rewrite if
    //       both ops are in the same block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/runtime/sema_test.go

    	// nondeterministic, so this test checks that we get the
    	// desired outcome in a significant majority of cases.
    	// The actual ratio of direct handoffs is much higher
    	// (>90%) but we use a lower threshold to minimize the
    	// chances that unrelated changes in the runtime will
    	// cause the test to fail or become flaky.
    	if ok < iter*2/3 {
    		t.Fatal("direct handoff < 2/3:", ok, iter)
    	}
    }
    
    func TestSemaHandoff1(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 21 19:37:22 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  6. tests/integration/pilot/testdata/upgrade/1.11.0-beta.1-cni-install.yaml.tar

    nodes. - effect: NoSchedule operator: Exists # Mark the pod as a critical add-on for rescheduling. - key: CriticalAddonsOnly operator: Exists - effect: NoExecute operator: Exists priorityClassName: system-node-critical serviceAccountName: istio-cni # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a "force # deletion": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods. terminationGracePeri: 5 containers: # This container installs the Istio CNI binaries...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 10K bytes
    - Viewed (0)
  7. src/internal/fuzz/worker_test.go

    				if i == 0 {
    					i++
    					return time.Second, errors.New("initial failure for deflake")
    				}
    				return time.Second, nil
    			}
    			for i := 0; i < b.N; i++ {
    				b.SetBytes(int64(sz))
    				ws.minimize(ctx, minimizeArgs{})
    			}
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolutionIssuesIntegrationTest.groovy

            expect:
            succeeds(":compose:ui:ui:resolve", "--stacktrace")
        }
    
        @NotYetImplemented
        @Issue("https://github.com/gradle/gradle/issues/26145#issuecomment-1957776331")
        def "partially minimized reproducer -- android project causes corrupt serialized resolution result"() {
            settingsFile << """
                pluginManagement {
                    ${mavenCentralRepository()}
                    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 04:02:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/layout.go

    		for posdegree.size() > 0 {
    			cid := posdegree.pop()
    			if !scheduled[cid] {
    				bid = cid
    				continue blockloop
    			}
    		}
    		// Pick any exit block.
    		// TODO: Order these to minimize jump distances?
    		for {
    			cid := exit.pop()
    			if !scheduled[cid] {
    				bid = cid
    				continue blockloop
    			}
    		}
    	}
    	f.laidout = true
    	return order
    	//f.Blocks = order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    	// Adds a new etcd instance; in order to do this the new etcd instance should be "announced" to
    	// the existing etcd members before being created.
    	// This operation must be executed after kubelet is already started in order to minimize the time
    	// between the new etcd member is announced and the start of the static pod running the new etcd member, because during
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top