Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ALLOW (0.04 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

    // output parameters.
    absl::Status InitStreamExecutorPlugin(void* dso_handle,
                                          std::string* device_type,
                                          std::string* platform_name);
    
    // Allow registering a StreamExecutor plugin using a function (used for
    // testing).
    absl::Status InitStreamExecutorPlugin(SEInitPluginFn init_fn,
                                          std::string* device_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

    ### Fixes
    
    * 🐛 Allow exit code for dependencies with `yield` to always execute, by removing capacity limiter for them, to e.g. allow closing DB connections without deadlocks. PR [#5122](https://github.com/tiangolo/fastapi/pull/5122) by [@adriangb](https://github.com/adriangb).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  3. pilot/pkg/model/endpointshards.go

    			}
    			return keys[i].Provider < keys[j].Provider
    		})
    	}
    	return keys
    }
    
    // CopyEndpoints takes a snapshot of all endpoints. As input, it takes a map of port name to number, to allow it to group
    // the results by service port number. This is a bit weird, but lets us efficiently construct the format the caller needs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    		// Gateway allows only 301 and 302.
    		resp.RedirectCode = uint32(*filter.StatusCode)
    	}
    	if filter.Hostname != nil {
    		resp.Authority = string(*filter.Hostname)
    	}
    	if filter.Scheme != nil {
    		// Both allow http and https
    		resp.Scheme = *filter.Scheme
    	}
    	if filter.Port != nil {
    		resp.RedirectPort = &istio.HTTPRedirect_Port{Port: uint32(*filter.Port)}
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry_logging.go

    ) (*fileaccesslog.FileAccessLog_LogFormat, []*core.TypedExtensionConfig) {
    	jsonLogStruct := EnvoyJSONLogFormatIstio
    	if logFormat.Labels != nil {
    		jsonLogStruct = logFormat.Labels
    	}
    
    	// allow default behavior when no labels supplied.
    	if len(jsonLogStruct.Fields) == 0 {
    		jsonLogStruct = EnvoyJSONLogFormatIstio
    	}
    
    	formatters := accessLogJSONFormatters(jsonLogStruct)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. pilot/pkg/model/gateway.go

    			continue
    		}
    		if w.Port.Port == int(number) {
    			if legacyGatewaySelector {
    				// When we are using legacy gateway label selection, we only resolve to a single port
    				// This has pros and cons; we don't allow merging of routes when it would be desirable, but
    				// we also avoid accidentally merging routes when we didn't intend to. While neither option is great,
    				// picking the first one here preserves backwards compatibility.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. cmd/object-handlers.go

    	// metadataOnly is true indicating that we are not overwriting the object.
    	// if encryption is enabled we do not need explicit "REPLACE" metadata to
    	// be enabled as well - this is to allow for key-rotation.
    	if !isDirectiveReplace(r.Header.Get(xhttp.AmzMetadataDirective)) && !isDirectiveReplace(r.Header.Get(xhttp.AmzTagDirective)) &&
    		srcInfo.metadataOnly && srcOpts.VersionID == "" && !objectEncryption {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	maxWaitForContainerRuntime = 30 * time.Second
    
    	// nodeStatusUpdateRetry specifies how many times kubelet retries when posting node status failed.
    	nodeStatusUpdateRetry = 5
    
    	// nodeReadyGracePeriod is the period to allow for before fast status update is
    	// terminated and container runtime not being ready is logged without verbosity guard.
    	nodeReadyGracePeriod = 120 * time.Second
    
    	// DefaultContainerLogsDir is the location of container logs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    	var (
    		configMaps = make(map[string]*v1.ConfigMap)
    		secrets    = make(map[string]*v1.Secret)
    		tmpEnv     = make(map[string]string)
    	)
    
    	// Env will override EnvFrom variables.
    	// Process EnvFrom first then allow Env to replace existing values.
    	for _, envFrom := range container.EnvFrom {
    		switch {
    		case envFrom.ConfigMapRef != nil:
    			cm := envFrom.ConfigMapRef
    			name := cm.Name
    			configMap, ok := configMaps[name]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top