Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 for mainIvy (0.13 sec)

  1. src/main/java/jcifs/SmbResource.java

     */
    package jcifs;
    
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    
    
    /**
     * This class represents a resource on an SMB network. Mainly these
     * resources are files and directories however an <code>SmbFile</code>
     * may also refer to servers and workgroups.
     * 
     * @see jcifs.smb.SmbFile for the main implementation of this interface
     * @author mbechler
     */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    // JSONSchemaURL represents a schema url.
    type JSONSchemaURL string
    
    // JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps
    // or an array of JSONSchemaProps. Mainly here for serialization purposes.
    type JSONSchemaPropsOrArray struct {
    	Schema *JSONSchemaProps `protobuf:"bytes,1,opt,name=schema"`
    	// +listType=atomic
    	JSONSchemas []JSONSchemaProps `protobuf:"bytes,2,rep,name=jSONSchemas"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

                          body_rewrite_pattern, quantization_method);
    
      ReplaceXlaCallModuleOpWithNewCallOp(xla_call_module_op, entry_func_op,
                                          rewriter);
    }
    
    // Pattern that mainly does two things:
    //
    //   1. Replaces quantized `TF::XlaCallModuleOp` with a `func::CallOp`.
    //   2. Quantizes the callee function.
    //
    // The inputs of this pattern assumes an invalid IR, where even if a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. docs/en/docs/alternatives.md

        Find ways to get great performance.
    
        Along with Hug (as Hug is based on Falcon) inspired **FastAPI** to declare a `response` parameter in functions.
    
        Although in FastAPI it's optional, and is used mainly to set headers, cookies, and alternative status codes.
    
    ### <a href="https://moltenframework.com/" class="external-link" target="_blank">Molten</a>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster.go

    	var services []*model.Service
    	// Holds clusters per service, keyed by hostname.
    	serviceClusters := make(map[string]sets.String)
    	// Holds service ports, keyed by hostname.Inner map port and its cluster name.
    	// This is mainly used when service is updated and a port has been removed.
    	servicePortClusters := make(map[string]map[int]string)
    	// Holds subset clusters per service, keyed by hostname.
    	subsetClusters := make(map[string]sets.String)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. pkg/kubelet/metrics/metrics.go

    	)
    
    	// RunningPodCount is a gauge that tracks the number of Pods currently with a running sandbox
    	// It is used to expose the kubelet internal state: how many pods have running containers in the container runtime, and mainly for debugging purpose.
    	RunningPodCount = metrics.NewGauge(
    		&metrics.GaugeOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           RunningPodsKey,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  7. pkg/adsc/adsc.go

    	XDSSAN string
    
    	// XDSRootCAFile explicitly set the root CA to be used for the XDS connection.
    	// Mirrors Envoy file.
    	XDSRootCAFile string
    
    	// RootCert contains the XDS root certificate. Used mainly for tests, apps will normally use
    	// XDSRootCAFile
    	RootCert []byte
    
    	// InsecureSkipVerify skips client verification the server's certificate chain and host name.
    	InsecureSkipVerify bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  8. pkg/controller/deployment/util/deployment_util.go

    }
    
    // HasRevisionHistoryLimit checks if the Deployment d is expected to keep a specified number of
    // old replicaSets. These replicaSets are mainly kept with the purpose of rollback.
    // The RevisionHistoryLimit can start from 0 (no retained replicasSet). When set to math.MaxInt32,
    // the Deployment will keep all revisions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  9. pkg/kube/inject/webhook.go

    // webhook.
    type WebhookParameters struct {
    	// Watcher watches the sidecar injection configuration.
    	Watcher Watcher
    
    	// Port is the webhook port, e.g. typically 443 for https.
    	// This is mainly used for tests. Webhook runs on the port started by Istiod.
    	Port int
    
    	Env *model.Environment
    
    	// Use an existing mux instead of creating our own.
    	Mux *http.ServeMux
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Iterables.java

    import java.util.stream.Stream;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.NonNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An assortment of mainly legacy static utility methods that operate on or return objects of type
     * {@code Iterable}. Except as noted, each method has a corresponding {@link Iterator}-based method
     * in the {@link Iterators} class.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.5K bytes
    - Viewed (0)
Back to top