Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 316 for patching (0.21 sec)

  1. pkg/controller/disruption/disruption.go

    	controllerKindRC  = v1.SchemeGroupVersion.WithKind("ReplicationController")
    	controllerKindDep = v1beta1.SchemeGroupVersion.WithKind("Deployment")
    )
    
    // getPodReplicaSet finds a replicaset which has no matching deployments.
    func (dc *DisruptionController) getPodReplicaSet(ctx context.Context, controllerRef *metav1.OwnerReference, namespace string) (*controllerAndScale, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  2. pkg/controller/job/indexed_job_utils_test.go

    					BackoffLimitPerIndex: ptr.To[int32](1),
    				},
    			},
    			pod:        buildPod().indexFailureCount("1").phase(v1.PodFailed).index("1").trackingFinalizer().Pod,
    			wantResult: true,
    		},
    		"matching FailIndex pod failure policy; JobPodFailurePolicy enabled": {
    			enableJobPodFailurePolicy: true,
    			job: batch.Job{
    				Spec: batch.JobSpec{
    					Completions:          ptr.To[int32](2),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

                apply plugin: "java"
    
                java {
                    toolchain {
                        languageVersion = JavaLanguageVersion.of(${jdk.javaVersion.majorVersion})
                        vendor = JvmVendorSpec.matching("${System.getProperty("java.vendor").toLowerCase()}")
                    }
                }
            """
    
            when:
            withInstallations(jdk).run(":compileJava", "--info")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. cmd/tier.go

    func (config *TierConfigMgr) getDriver(ctx context.Context, tierName string) (d WarmBackend, err error) {
    	config.Lock()
    	defer config.Unlock()
    
    	var ok bool
    	// Lookup in-memory drivercache
    	d, ok = config.drivercache[tierName]
    	if ok {
    		return d, nil
    	}
    
    	// Initialize driver from tier config matching tierName
    	t, ok := config.Tiers[tierName]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. pkg/kube/inject/inject.go

    			} else if !selector.Empty() && selector.Matches(labels.Set(metadata.Labels)) {
    				log.Debugf("Explicitly disabling injection for pod %s/%s due to pod labels matching NeverInjectSelector config map entry.",
    					metadata.Namespace, potentialPodName(metadata))
    				inject = false
    				useDefault = false
    				break
    			}
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. pkg/controller/cronjob/cronjob_controllerv2.go

    		},
    		DeleteFunc: func(obj interface{}) {
    			jm.enqueueController(obj)
    		},
    	})
    
    	metrics.Register()
    
    	return jm, nil
    }
    
    // Run starts the main goroutine responsible for watching and syncing jobs.
    func (jm *ControllerV2) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    
    	// Start event processing pipeline.
    	jm.broadcaster.StartStructuredLogging(3)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

      auto status_or_device_coodinates =
          tensorflow::GetDeviceCoordinates(device_assignment_attr);
      if (!status_or_device_coodinates.ok())
        return cluster.emitError()
               << "error in fetching tpu device coordinates: "
               << status_or_device_coodinates.status().message();
    
      status_or_tpu_device_assignment =
          tensorflow::GetTPUCompilationAndExecutionDevices(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. src/runtime/lockrank_on.go

    				gp.m.locksHeldLen--
    				break
    			}
    		}
    		if !found {
    			println(gp.m.procid, ":", l.rank.String(), l.rank, l)
    			throw("unlock without matching lock acquire")
    		}
    		unlock2(l)
    	})
    }
    
    // releaseLockRankAndM releases a rank which is not associated with a mutex
    // lock. To maintain the invariant that an M with m.locks==0 does not hold any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/types_test.go

    		},
    		{
    			name:        "event with resource = 'Pod' matching with coming events carries same actionType",
    			event:       ClusterEvent{Resource: Pod, ActionType: UpdateNodeLabel | UpdateNodeTaint},
    			comingEvent: ClusterEvent{Resource: Pod, ActionType: UpdateNodeLabel},
    			wantResult:  true,
    		},
    		{
    			name:        "event with resource = '*' matching with coming events carries same actionType",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/network.go

    		if err != nil {
    			log.Errorf("error getting cidr ranger entry from endpoint ip %s", endpointIP)
    			return ""
    		}
    		if len(entries) > 1 {
    			log.Warnf("Found multiple networks CIDRs matching the endpoint IP: %s. Using the first match.", endpointIP)
    		}
    		if len(entries) > 0 {
    			return (entries[0].(namedRangerEntry)).name
    		}
    	}
    	return ""
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top