Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for patching (0.23 sec)

  1. cni/pkg/cmd/root.go

    			watchServerReady.Store(true)
    		}
    
    		installer := install.NewInstaller(&cfg.InstallConfig, installDaemonReady)
    
    		repair.StartRepair(ctx, cfg.RepairConfig)
    
    		log.Info("Installer created, watching node CNI dir")
    		// installer.Run() will block indefinitely, and attempt to permanently "keep"
    		// the CNI binary installed.
    		if err = installer.Run(ctx); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. settings.gradle.kts

            subproject("build-cache-http")
            subproject("build-cache-packaging")
            subproject("build-cache-spi")
            subproject("execution-e2e-tests")
            subproject("file-watching")
            subproject("execution")
            subproject("hashing")
            subproject("persistent-cache")
            subproject("snapshots")
            subproject("worker-main")
            subproject("workers")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. go.mod

    module istio.io/istio
    
    go 1.22.0
    
    // Client-go does not handle different versions of mergo due to some breaking changes - use the matching version
    replace github.com/imdario/mergo => github.com/imdario/mergo v0.3.5
    
    require (
    	cloud.google.com/go/compute/metadata v0.3.0
    	github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24
    	github.com/Masterminds/semver/v3 v3.2.1
    	github.com/Masterminds/sprig/v3 v3.2.3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

            // It means more specific classes will be selected (such as KaClassSymbol instead of KaSymbol)
            val minSupertypeCount = matchingClassesRanking.maxOf { it.value }
    
            // If there are multiple matching classes, at least choose some stable one (based on the simple name ordering)
            return matchingClassesRanking
                .filter { it.value == minSupertypeCount }
                .keys
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. cmd/erasure-healing-common.go

    //
    // 2. __offline__            - err == errDiskNotFound
    //
    // 3. __availableWithParts__ - has the latest copy of xl.meta and has all
    //                             parts with checksums matching; returned by disksWithAllParts
    //
    // 4. __outdated__           - returned by outDatedDisk, provided []StorageAPI
    //                             returned by diskWithAllParts is passed for latestDisks.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/crdclient/client.go

    // read-modify-write conflicts when there are many concurrent-writers to the same resource.
    func (cl *Client) Patch(orig config.Config, patchFn config.PatchFunc) (string, error) {
    	modified, patchType := patchFn(orig.DeepCopy())
    
    	meta, err := patch(cl.client, orig, getObjectMetadata(orig), modified, getObjectMetadata(modified), patchType)
    	if err != nil {
    		return "", err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. cmd/object-api-options.go

    			deletePrefix = b
    		} else {
    			return opts, err
    		}
    	}
    
    	opts.DeletePrefix = deletePrefix
    	opts.Versioned = globalBucketVersioningSys.PrefixEnabled(bucket, object)
    	// Objects matching prefixes should not leave delete markers,
    	// dramatically reduces namespace pollution while keeping the
    	// benefits of replication, make sure to apply version suspension
    	// only at bucket level instead.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_inbound.go

    	actualWildcards, _ := getWildcardsAndLocalHost(lb.node.GetIPMode())
    
    	// Build the "virtual" inbound listener. This will capture all inbound redirected traffic and contains:
    	// * Passthrough filter chains, matching all unmatched traffic. There are a few of these to handle all cases
    	// * Service filter chains. These will either be for each Port exposed by a Service OR Sidecar.Ingress configuration.
    	allChains := buildInboundPassthroughChains(lb)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    						continue
    					}
    					targetPort = tv
    				}
    			} else {
    				// ServiceEntry has no explicit named targetPorts; targetPort only allows a number
    				// Instead, there is name matching between the port names
    				if named, f := svc.PortNames[int32(port.ServicePort)]; f {
    					// get port name or target port
    					tv, ok := p.Ports[named.PortName]
    					if ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. pilot/pkg/simulation/traffic.go

    		return chains
    	}
    	for i, c := range chains {
    		if match(c.GetFilterChainMatch()) {
    			log.Debugf("%v: matched chain %v/%v", desc, i, c.GetName())
    			res = append(res, c)
    		}
    	}
    	// Return all matching filter chains
    	if len(res) > 0 {
    		return res
    	}
    	// Unless there were no matches - in which case we return all filter chains that did not have a
    	// match set
    	for i, c := range chains {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top