Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for getPost (0.39 sec)

  1. pilot/pkg/model/push_context.go

    			if r.Destination != nil {
    				addDestination(r.Destination.Host, r.Destination.GetPort())
    			}
    		}
    		if h.Mirror != nil {
    			addDestination(h.Mirror.Host, h.Mirror.GetPort())
    		}
    		for _, m := range h.Mirrors {
    			if m.Destination != nil {
    				addDestination(m.Destination.Host, m.Destination.GetPort())
    			}
    		}
    	}
    	for _, t := range v.Tcp {
    		for _, r := range t.Route {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Synchronized.java

        @Override
        public E getFirst() {
          synchronized (mutex) {
            return delegate().getFirst();
          }
        }
    
        @Override
        public E getLast() {
          synchronized (mutex) {
            return delegate().getLast();
          }
        }
    
        @Override
        @CheckForNull
        public E peekFirst() {
          synchronized (mutex) {
            return delegate().peekFirst();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Synchronized.java

        @Override
        public E getFirst() {
          synchronized (mutex) {
            return delegate().getFirst();
          }
        }
    
        @Override
        public E getLast() {
          synchronized (mutex) {
            return delegate().getLast();
          }
        }
    
        @Override
        @CheckForNull
        public E peekFirst() {
          synchronized (mutex) {
            return delegate().peekFirst();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    		if key, err := e.KeyFunc(ctx, name); err == nil {
    			storageOpts.Recursive = false
    			err := e.Storage.GetList(ctx, key, storageOpts, list)
    			return list, storeerr.InterpretListError(err, qualifiedResource)
    		}
    		// if we cannot extract a key based on the current context, the optimization is skipped
    	}
    
    	err := e.Storage.GetList(ctx, e.KeyRootFunc(ctx), storageOpts, list)
    	return list, storeerr.InterpretListError(err, qualifiedResource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    //	           ::= DT <expression> E
    func (st *state) prefix() AST {
    	var a AST
    
    	// The last name seen, for a constructor/destructor.
    	var last AST
    
    	var module AST
    
    	getLast := func(a AST) AST {
    		for {
    			if t, ok := a.(*Template); ok {
    				a = t.Name
    			} else if q, ok := a.(*Qualified); ok {
    				a = q.Name
    			} else if t, ok := a.(*TaggedName); ok {
    				a = t.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            registerInstanceOn(modelRegistry, "extensionContainer", EXTENSION_CONTAINER_MODEL_TYPE, getExtensions());
            modelRegistry.getRoot().applyToSelf(BasicServicesRules.class);
        }
    
        private <T> void registerInstanceOn(ModelRegistry modelRegistry, String path, ModelType<T> type, T instance) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            LoggingServiceRegistry loggingServices = LoggingServiceRegistry.newEmbeddableLogging();
            LoggingManagerInternal rootLoggingManager = loggingServices.get(DefaultLoggingManagerFactory.class).getRoot();
            rootLoggingManager.attachSystemOutAndErr();
            return loggingServices;
        }
    
        @Override
        public GradleExecuter withTestConsoleAttached() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            return currentState.map(ResolverResults::isFullyResolved).orElse(false);
        }
    
        private class ConfigurationResolutionAccess implements ResolutionAccess {
    
            @Override
            public ResolutionHost getHost() {
                return new DefaultResolutionHost();
            }
    
            @Override
            public ImmutableAttributes getAttributes() {
                configurationAttributes.freeze();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe.go

    			fmt.Fprintf(writer, "%sPort Level Settings:\n", printSpaces(initPrintNum+printLevel1))
    			for _, ps := range trafficPolicy.PortLevelSettings {
    				fmt.Fprintf(writer, "%s%d:\n", printSpaces(4), ps.GetPort().GetNumber())
    				if ps.Tls != nil {
    					fmt.Fprintf(writer, "%sTLS Mode: %s\n", printSpaces(initPrintNum+printLevel2), ps.Tls.Mode.String())
    				}
    				if sp := recordShortPolicies(
    					ps.LoadBalancer,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. pkg/workloadapi/workload.pb.go

    }
    
    func (x *ApplicationTunnel) GetProtocol() ApplicationTunnel_Protocol {
    	if x != nil {
    		return x.Protocol
    	}
    	return ApplicationTunnel_NONE
    }
    
    func (x *ApplicationTunnel) GetPort() uint32 {
    	if x != nil {
    		return x.Port
    	}
    	return 0
    }
    
    // GatewayAddress represents the address of a gateway
    type GatewayAddress struct {
    	state         protoimpl.MessageState
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top