Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 297 for chancap (0.24 sec)

  1. pilot/pkg/networking/core/configgen.go

    		pullSecrets map[string][]byte) []*core.TypedExtensionConfig
    
    	// MeshConfigChanged is invoked when mesh config is changed, giving a chance to rebuild any cached config.
    	MeshConfigChanged(mesh *meshconfig.MeshConfig)
    }
    
    type ConfigGeneratorImpl struct {
    	Cache model.XdsCache
    }
    
    func NewConfigGenerator(cache model.XdsCache) *ConfigGeneratorImpl {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.h

    // The predecessor (which can be null) is the last op we emitted,
    // and op is the candidate we're considering. A larger returned integer
    // means the op has a higher chance of being emitted first.
    typedef int (*PriorityFunction)(Operation *predecessor, Operation *op);
    
    // A function that returns extra dependencies for each op. These might
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/configuration/configuration_manager.go

    	go func() {
    		defer timer.Stop()
    		<-timer.C
    		a.lock.Lock()
    		defer a.lock.Unlock()
    		a.bootstrapped = true
    	}()
    }
    
    // If the poller is not bootstrapped yet, the configuration() gets a few chances
    // to retry. This hides transient failures during system startup.
    func (a *poller) configuration() (runtime.Object, error) {
    	a.once.Do(a.bootstrapping)
    	a.lock.RLock()
    	defer a.lock.RUnlock()
    	retries := 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 06 02:02:38 UTC 2017
    - 4.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/MSBuildVersionLocator.java

            }
    
            // There is some value to the other ways to locate MSBuild (aka matching the MSBuild installation with the VS installation), this is a last chance to try and locate a usable MSBuild installation which will just try to get the latest available MSBuild. We can refine this later.
            if (!msbuild.exists()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/interfaces.go

    type RESTClient interface {
    	Get() *rest.Request
    	Post() *rest.Request
    	Patch(types.PatchType) *rest.Request
    	Delete() *rest.Request
    	Put() *rest.Request
    }
    
    // RequestTransform is a function that is given a chance to modify the outgoing request.
    type RequestTransform func(*rest.Request)
    
    // NewClientWithOptions wraps the provided RESTClient and invokes each transform on each
    // newly created request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/filters/waitgroup.go

    			if isRequestExemptFn(req) {
    				handler.ServeHTTP(w, req)
    				return
    			}
    
    			// When apiserver is shutting down, signal clients to retry
    			// There is a good chance the client hit a different server, so a tight retry is good for client responsiveness.
    			waitGroupWriteRetryAfterToResponse(w)
    			return
    		}
    
    		defer wg.Done()
    		handler.ServeHTTP(w, req)
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 10 21:18:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. docs/pt/docs/help-fastapi.md

    do FastAPI.
    
    !!! tip "Dica"
        Para perguntas, pergunte nas <a href="https://github.com/tiangolo/fastapi/issues/new/choose" class="external-link" target="_blank">questões do GitHub</a>, lá tem um chance maior de você ser ajudado sobre o FastAPI [FastAPI Experts](fastapi-people.md#especialistas){.internal-link target=_blank}.
    
        Use o chat apenas para outro tipo de assunto.
    
    ### Não faça perguntas no chat
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. plugin/pkg/admission/eventratelimit/admission.go

    	// because they don't correspond to any calls to etcd,
    	// they should not be affected by the ratelimit
    	if attr.IsDryRun() {
    		return nil
    	}
    
    	var errors []error
    	// give each limit enforcer a chance to reject the event
    	for _, enforcer := range a.limitEnforcers {
    		if err := enforcer.accept(attr); err != nil {
    			errors = append(errors, err)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 14 15:26:57 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java

                directExecutor());
    
        // Wait for the first task to be started in the background. It will block until we explicitly
        // stop it.
        blockingCallable.waitForStart();
    
        // Give the second task a chance to (incorrectly) start up while the first task is running.
        assertThat(future2.isDone()).isFalse();
    
        // Stop the first task. The second task should then run.
        blockingCallable.stop();
        executor.shutdown();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    		s.Fatalf("cannot inline len(chan)") // must use runtime.chanlen now
    	}
    	if n.X.Type().IsChan() && n.Op() == ir.OCAP {
    		s.Fatalf("cannot inline cap(chan)") // must use runtime.chancap now
    	}
    	// if n == nil {
    	//   return 0
    	// } else {
    	//   // len
    	//   return *((*int)n)
    	//   // cap
    	//   return *(((*int)n)+1)
    	// }
    	lenType := n.Type()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top