Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 146 for SetMode (1.3 sec)

  1. pkg/scheduler/framework/plugins/noderesources/fit.go

    func isFit(pod *v1.Pod, node *v1.Node) bool {
    	if node == nil {
    		return false
    	}
    	nodeInfo := framework.NewNodeInfo()
    	nodeInfo.SetNode(node)
    	return len(Fits(pod, nodeInfo)) == 0
    }
    
    // Filter invoked at the filter extension point.
    // Checks if a node has sufficient resources, such as cpu, memory, gpu, opaque int resources etc to run a pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. docs/de/docs/python-types.md

    Aber nun stellen Sie sich vor, Sie würden es selbst schreiben.
    
    Irgendwann sind die Funktions-Parameter fertig, Sie starten mit der Definition des Körpers ...
    
    Aber dann müssen Sie „diese Methode aufrufen, die den ersten Buchstaben in Großbuchstaben umwandelt“.
    
    War es `upper`? War es `uppercase`? `first_uppercase`? `capitalize`?
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:25 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

            }
            final AuthenticationErrorResponse oidcResponse = (AuthenticationErrorResponse) authResponse;
            throw new SsoLoginException(String.format("Request for auth code failed: %s - %s", oidcResponse.getErrorObject().getCode(),
                    oidcResponse.getErrorObject().getDescription()));
        }
    
        protected AuthenticationResponse parseAuthenticationResponse(final String url, final Map<String, List<String>> params) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. docs/de/docs/deployment/concepts.md

    Bei dem Deployment – der Bereitstellung – einer **FastAPI**-Anwendung, oder eigentlich jeder Art von Web-API, gibt es mehrere Konzepte, die Sie wahrscheinlich interessieren, und mithilfe der Sie die **am besten geeignete** Methode zur **Bereitstellung Ihrer Anwendung** finden können.
    
    Einige wichtige Konzepte sind:
    
    * Sicherheit – HTTPS
    * Beim Hochfahren ausführen
    * Neustarts
    * Replikation (die Anzahl der laufenden Prozesse)
    * Arbeitsspeicher
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    		addLimitToNode()
    		addDriversCSINode(true)
    	case "csinode-with-no-limit":
    		addDriversCSINode(false)
    	case "no-csi-driver":
    		initCSINode()
    	default:
    		// Do nothing.
    	}
    
    	nodeInfo.SetNode(node)
    	return nodeInfo, csiNode
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. pkg/kube/inject/inject.go

    		imageType = it
    	}
    
    	return imageURL(global.GetHub(), imageName, tag, imageType)
    }
    
    func InboundTrafficPolicyMode(meshConfig *meshconfig.MeshConfig) string {
    	switch meshConfig.GetInboundTrafficPolicy().GetMode() {
    	case meshconfig.MeshConfig_InboundTrafficPolicy_LOCALHOST:
    		return "localhost"
    	case meshconfig.MeshConfig_InboundTrafficPolicy_PASSTHROUGH:
    		return "passthrough"
    	}
    	return "passthrough"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster.go

    		port := int(instance.Port.TargetPort)
    		clustersToBuild[port] = append(clustersToBuild[port], instance)
    	}
    
    	bind := actualLocalHosts[0]
    	if cb.req.Push.Mesh.GetInboundTrafficPolicy().GetMode() == meshconfig.MeshConfig_InboundTrafficPolicy_PASSTHROUGH {
    		bind = ""
    	}
    	// For each workload port, we will construct a cluster
    	for epPort, instances := range clustersToBuild {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.pb.go

    }
    
    func (x *LoadBalancing) GetRoutingPreference() []LoadBalancing_Scope {
    	if x != nil {
    		return x.RoutingPreference
    	}
    	return nil
    }
    
    func (x *LoadBalancing) GetMode() LoadBalancing_Mode {
    	if x != nil {
    		return x.Mode
    	}
    	return LoadBalancing_UNSPECIFIED_MODE
    }
    
    // Workload represents a workload - an endpoint (or collection behind a hostname).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/httproute.go

    		base.GenerateRequestID = proto.BoolFalse
    	}
    	if ph.EnvoyDebugHeaders.GetDisabled().GetValue() {
    		base.SuppressDebugHeaders = true
    	}
    	if ph.MetadataExchangeHeaders != nil && ph.MetadataExchangeHeaders.GetMode() == meshconfig.ProxyConfig_ProxyHeaders_IN_MESH {
    		base.SkipIstioMXHeaders = true
    	}
    	return base
    }
    
    func BuildSidecarOutboundVirtualHosts(node *model.Proxy, push *model.PushContext,
    	routeName string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_node_status.go

    			kl.containerRuntimeReadyExpected = true
    		}
    	}()
    
    	if timeout {
    		klog.ErrorS(nil, "Node not becoming ready in time after startup")
    		return true
    	}
    
    	originalNode, err := kl.GetNode()
    	if err != nil {
    		klog.ErrorS(err, "Error getting the current node from lister")
    		return false
    	}
    
    	readyIdx, originalNodeReady := nodeutil.GetNodeCondition(&originalNode.Status, v1.NodeReady)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top