Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for distinguish (0.22 sec)

  1. pkg/config/model.go

    // * golang/protobuf Message
    // * gogo/protobuf Message
    // * Able to marshal/unmarshal using json
    type Spec any
    
    func ToProto(s Spec) (*anypb.Any, error) {
    	// golang protobuf. Use protoreflect.ProtoMessage to distinguish from gogo
    	// golang/protobuf 1.4+ will have this interface. Older golang/protobuf are gogo compatible
    	// but also not used by Istio at all.
    	if pb, ok := s.(protoreflect.ProtoMessage); ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r67/ToolingApiEclipseModelUnresolvedDependenciesCrossVersionSpec.groovy

            allDependencies[0].resolved
            allDependencies[0].attemptedSelector == null
            allDependencies[1].resolved
            allDependencies[1].attemptedSelector == null
        }
    
        def "Client can distinguish resolved and unresolved dependencies"() {
            when:
            def project = loadToolingModel(EclipseProject)
            def allDependencies = project.classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_traffic_policy.go

    		tls.CaCertificates = "system"
    	}
    
    	return connectionPool, outlierDetection, loadBalancer, tls, proxyProtocol
    }
    
    // FIXME: there isn't a way to distinguish between unset values and zero values
    func (cb *ClusterBuilder) applyConnectionPool(mesh *meshconfig.MeshConfig,
    	mc *clusterWrapper, settings *networking.ConnectionPoolSettings,
    ) {
    	if settings == nil {
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cache/default.go

    	// Save the result of the first call to DefaultDir for later use in
    	// initDefaultCache. cmd/go/main.go explicitly sets GOCACHE so that
    	// subprocesses will inherit it, but that means initDefaultCache can't
    	// otherwise distinguish between an explicit "off" and a UserCacheDir error.
    
    	defaultDirOnce.Do(func() {
    		defaultDir = cfg.Getenv("GOCACHE")
    		if defaultDir != "" {
    			defaultDirChanged = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/MissingAttributeAmbiguousGraphVariantsFailureDescriber.java

     */
    public abstract class MissingAttributeAmbiguousGraphVariantsFailureDescriber extends AmbiguousGraphVariantsFailureDescriber {
        /**
         * Map from failure -> name of attribute that would distinguish each candidate.
         * This map exists to avoid re-discovering the unrequested attributes between the calls to `canDescribeFailure` and `describeFailure`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:12:53 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

         * associated result file.
         */
        protected abstract val modificationEventKind: KotlinModificationEventKind
    
        /**
         * A suffix for the result file to distinguish it from the results of other session invalidation tests if the results are different.
         */
        protected abstract val resultFileSuffix: String?
    
        protected abstract fun getSession(ktModule: KtModule): SESSION
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. cmd/bucket-replication-handlers.go

    				SourceVersionID:          mustGetUUID(),
    				ReplicationStatus:        minio.ReplicationStatusReplica,
    				SourceMTime:              time.Now(),
    				ReplicationRequest:       true, // always set this to distinguish between `mc mirror` replication and serverside
    				ReplicationValidityCheck: true, // set this to validate the replication config
    			},
    		}
    		obj := path.Join(minioReservedBucket, globalLocalNodeNameHex, "deleteme")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/body-updates.md

        So, if you want to receive partial updates that can omit all the attributes, you need to have a model with all the attributes marked as optional (with default values or `None`).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. pilot/pkg/xds/deltatest.go

    		} else {
    			// No diff. Ideally delta doesn't send any update here
    			wantUnchanged.Insert(c.Name)
    		}
    	}
    	for _, v := range sotwRes {
    		if _, f := curByName[v.Name]; !f {
    			// Resource is added. Delta doesn't distinguish add vs update, so just put it with changed
    			wantChanged.Insert(v.Name)
    		}
    	}
    
    	gotDeleted := sets.New[string]()
    	if usedDelta {
    		gotDeleted.InsertAll(deleted...)
    	}
    	gotChanged := sets.New[string]()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"revisionHistoryLimit": "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.",
    }
    
    func (DaemonSetSpec) SwaggerDoc() map[string]string {
    	return map_DaemonSetSpec
    }
    
    var map_DaemonSetStatus = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
Back to top