Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 118 for necessarily (0.15 sec)

  1. cmd/erasure-healing_test.go

    	obj, fsDirs, err := prepareErasure16(ctx)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer obj.Shutdown(context.Background())
    
    	// initialize the server and obtain the credentials and root.
    	// credentials are necessary to sign the HTTP request.
    	if err = newTestConfig(globalMinioDefaultRegion, obj); err != nil {
    		t.Fatalf("Unable to initialize server config. %s", err)
    	}
    
    	defer removeRoots(fsDirs)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// When we check 0 <= c <= cap (A), then 0 <= b <= c (B), then 0 <= a <= b (C), we want the
    		// default registers to match so we don't need to copy registers around unnecessarily.
    		{name: "LoweredPanicBoundsA", argLength: 3, aux: "Int64", reg: regInfo{inputs: []regMask{r2, r3}}, typ: "Mem", call: true}, // arg0=idx, arg1=len, arg2=mem, returns memory. AuxInt contains report code (see PanicBounds in generic.go).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    			chain.FilterChainMatch = opt.toFilterChainMatch()
    			l.FilterChains = append(l.FilterChains, chain)
    		}
    	}
    	// If there is only one filter chain, no need to use DefaultFilterChain
    	// This is probably not necessary, but for consistency with older code we keep the same logic.
    	if l.DefaultFilterChain != nil && len(l.FilterChains) == 0 {
    		l.FilterChains = []*listener.FilterChain{l.DefaultFilterChain}
    		l.DefaultFilterChain = nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    To enable it for the whole build, go to `Run > Edit configurations...`.
    This will open the IntelliJ IDEA or Android Studio dialog to configure Run/Debug configurations.
    Select `Templates > Gradle` and add the necessary system properties to the `VM options` field.
    
    For example to enable the configuration cache, turning problems into warnings, add the following:
    
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

        }
    
        /**
         * Component metadata from an external source only support 2 different types of attributes: boolean or string.
         * Gradle makes the necessary work to coerce those into "real" typed attributes during matching. This test
         * is here to prove that coercion works properly whenever attributes are sourced from a component metadata
         * supplier.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    			// TODO(k82cn): Add nodeName back to the queue
    		}
    		// TODO: re-evaluate whether there are any labels that need to be
    		// reconcile in 1.19. Remove this function if it's no longer necessary.
    		if err := nc.reconcileNodeLabels(ctx, nodeName); err != nil {
    			logger.Error(err, "Failed to reconcile labels for node, requeue it", "node", klog.KRef("", nodeName))
    			// TODO(yujuhong): Add nodeName back to the queue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

    #   - Creates the "management" interface associated with an initial HNS network.
    #   - Creates the HNS network $env:KUBE_NETWORK for pod networking.
    #   - Creates an HNS endpoint for pod networking.
    #   - Adds necessary routes on the management interface.
    #   - Verifies that the GCE metadata server connection remains intact.
    #
    # Prerequisites:
    #   $env:POD_CIDR is set (by Set-PodCidr).
    #   Download-HelperScripts() has been called.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container.go

    // case we may not have pod and container spec when killing a container, e.g. pod is deleted during
    // kubelet restart.
    // To solve this problem, we've already written necessary information into container labels. Here we
    // just need to retrieve them from container labels and restore the specs.
    // TODO(random-liu): Add a node e2e test to test this behaviour.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    }
    
    func (check *Checker) updateExprType0(parent, x ast.Expr, typ Type, final bool) {
    	old, found := check.untyped[x]
    	if !found {
    		return // nothing to do
    	}
    
    	// update operands of x if necessary
    	switch x := x.(type) {
    	case *ast.BadExpr,
    		*ast.FuncLit,
    		*ast.CompositeLit,
    		*ast.IndexExpr,
    		*ast.SliceExpr,
    		*ast.TypeAssertExpr,
    		*ast.StarExpr,
    		*ast.KeyValueExpr,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// When we check 0 <= c <= cap (A), then 0 <= b <= c (B), then 0 <= a <= b (C), we want the
    		// default registers to match so we don't need to copy registers around unnecessarily.
    		{name: "LoweredPanicBoundsA", argLength: 3, aux: "Int64", reg: regInfo{inputs: []regMask{r2, r3}}, typ: "Mem", call: true}, // arg0=idx, arg1=len, arg2=mem, returns memory. AuxInt contains report code (see PanicBounds in generic.go).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
Back to top