Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 98 for patching (0.28 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    			p.unschedulablePods.delete(pod, pInfo.Gated)
    		}
    	}
    	return nil
    }
    
    // AssignedPodAdded is called when a bound pod is added. Creation of this pod
    // may make pending pods with matching affinity terms schedulable.
    func (p *PriorityQueue) AssignedPodAdded(logger klog.Logger, pod *v1.Pod) {
    	p.lock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    		res = append(res, k)
    	}
    	for _, me := range routes.Namespaces.Selector.MatchExpressions {
    		if me.Operator == metav1.LabelSelectorOpNotIn || me.Operator == metav1.LabelSelectorOpDoesNotExist {
    			// Over-matching is fine because this only controls the set of namespace
    			// label change events to watch and the actual binding enforcement happens
    			// by checking the intersection of the generated VirtualService.spec.hosts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. cmd/erasure-healing.go

    	disks = disks[:expectedDisks]
    
    	// How to resolve partial results.
    	resolver := metadataResolutionParams{
    		dirQuorum: 1,
    		objQuorum: 1,
    		bucket:    bucket,
    		strict:    false, // Allow less strict matching.
    	}
    
    	path := baseDirFromPrefix(prefix)
    	filterPrefix := strings.Trim(strings.TrimPrefix(prefix, path), slashSeparator)
    	if path == prefix {
    		filterPrefix = ""
    	}
    
    	lopts := listPathRawOptions{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  4. cmd/bucket-policy-handlers_test.go

    			accessKey:            credentials.AccessKey,
    			secretKey:            credentials.SecretKey,
    			expectedBucketPolicy: "",
    			expectedRespStatus:   http.StatusBadRequest,
    		},
    	}
    	// Iterating over the cases, fetching the policy and validating the response.
    	for i, testCase := range testCases {
    		// expected bucket policy json string.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    			expectedClusters:     []string{"BlackHoleCluster", "InboundPassthroughCluster", "PassthroughCluster", "outbound|8080||test.com"},
    		},
    		{
    			name:     "destination rule with wildcard matching hosts",
    			services: []*model.Service{testService1},
    			configs: []config.Config{{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.DestinationRule,
    					Name:             "test-desinationrule",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_builder_test.go

    				Name:                 "outbound|8080|v1|foo.example.com",
    				ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_STRICT_DNS},
    			}},
    		},
    		{
    			name:        "subset with labels in both, not matching",
    			cluster:     &cluster.Cluster{Name: "foo", ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_STRICT_DNS}},
    			clusterMode: DefaultClusterMode,
    			service: &model.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                configurations.whenObjectAdded {
                    dependencies.whenObjectAdded {
                        gradle.buildFinished { }
                    }
                    dependencies.matching {
                        gradle.buildFinished { }
                        true
                    }.whenObjectAdded {
                        gradle.buildFinished { }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    		VersionID:         versionID,
    		MTime:             dobj.DeleteMarkerMTime.Time,
    		DeleteReplication: drs,
    		Versioned:         globalBucketVersioningSys.PrefixEnabled(bucket, dobj.ObjectName),
    		// 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
    - 114.4K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    		tx.Flush(&knftables.Set{
    			Name: nodePortIPsSet,
    		})
    		nodeIPs, err := proxier.nodePortAddresses.GetNodeIPs(proxier.networkInterfacer)
    		if err != nil {
    			proxier.logger.Error(err, "Failed to get node ip address matching nodeport cidrs, services with nodeport may not work as intended", "CIDRs", proxier.nodePortAddresses)
    		}
    		for _, ip := range nodeIPs {
    			if ip.IsLoopback() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. src/time/format.go

    var std0x = [...]int{stdZeroMonth, stdZeroDay, stdZeroHour12, stdZeroMinute, stdZeroSecond, stdYear}
    
    // startsWithLowerCase reports whether the string has a lower-case letter at the beginning.
    // Its purpose is to prevent matching strings like "Month" when looking for "Mon".
    func startsWithLowerCase(str string) bool {
    	if len(str) == 0 {
    		return false
    	}
    	c := str[0]
    	return 'a' <= c && c <= 'z'
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top