Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 88 for INITIALIZING (0.18 sec)

  1. pkg/istio-agent/xds_proxy.go

    			for _, cert := range caCerts {
    				trustBundle = util.AppendCertByte(trustBundle, []byte(cert))
    			}
    			return ia.secretCache.UpdateConfigTrustBundle(trustBundle)
    		}
    	}
    
    	proxyLog.Infof("Initializing with upstream address %q and cluster %q", proxy.istiodAddress, proxy.clusterID)
    
    	if err = proxy.initDownstreamServer(); err != nil {
    		return nil, err
    	}
    
    	if err = proxy.initIstiodDialOptions(ia); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_2x.md

        If you're using `Call.enqueue()` this update should significantly improve
        request concurrency.
    
     *  **Fix: Lazily initialize the response cache.** This avoids strict mode
        warnings when initializing OkHttp on Android‘s main thread.
    
     *  **Fix: Disable ALPN on Android 4.4.** That release of the feature was
        unstable and prone to native crashes in the underlying OpenSSL code.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	return adc.volumeAttachmentLister
    }
    
    // VolumeHost implementation
    // This is an unfortunate requirement of the current factoring of volume plugin
    // initializing code. It requires kubelet specific methods used by the mounting
    // code to be implemented by all initializers even if the initializer does not
    // do mounting (like this attach/detach controller).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/container_manager_linux.go

    					"might be swapped to disk and should no longer be considered secure.",
    			)
    		}
    	}
    
    	var internalCapacity = v1.ResourceList{}
    	// It is safe to invoke `MachineInfo` on cAdvisor before logically initializing cAdvisor here because
    	// machine info is computed and cached once as part of cAdvisor object creation.
    	// But `RootFsInfo` and `ImagesFsInfo` are not available at this moment so they will be called later during manager starts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status.go

    	copy(nodeTaints, kl.registerWithTaints)
    	unschedulableTaint := v1.Taint{
    		Key:    v1.TaintNodeUnschedulable,
    		Effect: v1.TaintEffectNoSchedule,
    	}
    
    	// Taint node with TaintNodeUnschedulable when initializing
    	// node to avoid race condition; refer to #63897 for more detail.
    	if node.Spec.Unschedulable &&
    		!taintutil.TaintExists(nodeTaints, &unschedulableTaint) {
    		nodeTaints = append(nodeTaints, unschedulableTaint)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ir/fmt.go

    	}
    
    	if complexinit {
    		fmt.Fprintf(s, " %v; ", n.Init())
    	}
    
    	switch n.Op() {
    	case ODCL:
    		n := n.(*Decl)
    		fmt.Fprintf(s, "var %v %v", n.X.Sym(), n.X.Type())
    
    	// Don't export "v = <N>" initializing statements, hope they're always
    	// preceded by the DCL which will be re-parsed and typechecked to reproduce
    	// the "v = <N>" again.
    	case OAS:
    		n := n.(*AssignStmt)
    		if n.Def && !complexinit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/decl.go

    	// is such that the color value of a grey object indicates the index of
    	// that object in the object path.
    
    	// During type-checking, white objects may be assigned a type without
    	// traversing through objDecl; e.g., when initializing constants and
    	// variables. Update the colors of those objects here (rather than
    	// everywhere where we set the type) to satisfy the color invariants.
    	if obj.color() == white && obj.Type() != nil {
    		obj.setColor(black)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  8. src/go/scanner/scanner_test.go

    	for _, s = range invalidSegments {
    		S.Scan()
    	}
    
    	if S.ErrorCount != len(invalidSegments) {
    		t.Errorf("got %d errors; want %d", S.ErrorCount, len(invalidSegments))
    	}
    }
    
    // Verify that initializing the same scanner more than once works correctly.
    func TestInit(t *testing.T) {
    	var s Scanner
    
    	// 1st init
    	src1 := "if true { }"
    	f1 := fset.AddFile("src1", fset.Base(), len(src1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  9. src/go/types/decl.go

    	// is such that the color value of a grey object indicates the index of
    	// that object in the object path.
    
    	// During type-checking, white objects may be assigned a type without
    	// traversing through objDecl; e.g., when initializing constants and
    	// variables. Update the colors of those objects here (rather than
    	// everywhere where we set the type) to satisfy the color invariants.
    	if obj.color() == white && obj.Type() != nil {
    		obj.setColor(black)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/staticinit/sched.go

    var varToMapInit map[*ir.Name]*ir.Func
    
    // MapInitToVar is the inverse of VarToMapInit; it maintains a mapping
    // from a compiler-generated init function to the map the function is
    // initializing.
    var MapInitToVar map[*ir.Func]*ir.Name
    
    // recordFuncForVar establishes a mapping between global map var "v" and
    // outlined init function "fn" (and vice versa); so that we can use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top