Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 73 for dialing (0.15 sec)

  1. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    			}
    		}
    	}
    	return errs
    }
    
    func ValidateSubTypes(e reflect.Value, failOnMissingValidation bool, values *valuesv1alpha1.Values, iopls *v1alpha1.IstioOperatorSpec) util.Errors {
    	// Dealing with receiver pointer and receiver value
    	ptr := e
    	k := e.Kind()
    	if k == reflect.Ptr || k == reflect.Interface {
    		e = e.Elem()
    	}
    	if !e.IsValid() {
    		return nil
    	}
    	// check for method on value
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/SystemApplicationClassLoaderWorker.java

                    CompositeStoppable.stoppable(connection, basicWorkerServices).stop();
                    loggingManager.stop();
                } catch (Throwable t) {
                    // We're failing while shutting down, so log whatever might have happened.
                    unrecoverableErrorHandler.execute(t);
                }
            }
    
            return null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. pkg/wasm/cache.go

    	// stopChan currently is only used by test
    	stopChan chan struct{}
    }
    
    var _ Cache = &LocalFileCache{}
    
    type checksumEntry struct {
    	checksum string
    	// Keeps the resource version per each resource for dealing with multiple resources which pointing the same image.
    	resourceVersionByResource map[string]string
    }
    
    type moduleKey struct {
    	// Identifier for the module. It should be neutral for the checksum.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. pkg/proxy/endpointslicecache.go

    			for _, endpointInfo := range endpointSet {
    				endpointsMap[svcPortName] = append(endpointsMap[svcPortName], endpointInfo)
    
    			}
    			// Ensure endpoints are always returned in the same order to simplify diffing.
    			sort.Sort(byEndpoint(endpointsMap[svcPortName]))
    
    			klog.V(3).InfoS("Setting endpoints for service port name", "portName", svcPortName, "endpoints", formatEndpointsList(endpointsMap[svcPortName]))
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. pkg/controller/cronjob/utils.go

    	"k8s.io/apimachinery/pkg/types"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/tools/record"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/utils/ptr"
    )
    
    // Utilities for dealing with Jobs and CronJobs and time.
    
    type missedSchedulesType int
    
    const (
    	noneMissed missedSchedulesType = iota
    	fewMissed
    	manyMissed
    )
    
    func (e missedSchedulesType) String() string {
    	switch e {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

            //then there is something to be fixed. If you intentionally added new jars to the distribution and this is now failing please
            //accept my sincere apologies that you have to manually bump the numbers here.
            jarLibEntries.size() == libJarsCount
        }
    
        protected List<? extends ZipEntry> getLibZipEntries() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. src/runtime/mbarrier.go

    // stack.
    //
    // For a detailed description of this barrier and proof of
    // correctness, see https://github.com/golang/proposal/blob/master/design/17503-eliminate-rescan.md
    //
    //
    //
    // Dealing with memory ordering:
    //
    // Both the Yuasa and Dijkstra barriers can be made conditional on the
    // color of the object containing the slot. We chose not to make these
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	//
    	// An API server that is fronted by an L7 load balancer that is set up
    	// to mitigate http2 attacks may opt to disable this protection to prevent
    	// unauthenticated clients from disabling connection reuse between the load
    	// balancer and the API server (many incoming connections could share the
    	// same backend connection).
    	//
    	// An API server that is on a private network may opt to disable this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

            idle
    
            and:
            1 * onStartCommand.run()
            1 * command.run() >> {
                assert notStopped
                coordinator.cancellationToken.addCallback { throw new RuntimeException('failing cancel callback') }
                instant.running
                thread.block()
            }
            1 * onFinishCommand.run()
            0 * _._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/staticpods.go

    			fmt.Println("[upgrade/etcd] Rolling back etcd data")
    			if err := rollbackEtcdData(cfg, pathMgr); err != nil {
    				// Even copying back datastore failed, no options for recovery left, bailing out
    				return true, errors.Errorf("fatal error rolling back local etcd cluster datadir: %v, the backup of etcd database is stored here:(%s)", err, backupEtcdDir)
    			}
    			fmt.Println("[upgrade/etcd] Etcd data rollback successful")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top