Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 166 for distinguish (0.15 sec)

  1. internal/etag/etag.go

    // an ETag back to an S3 client it has to be formatted to be
    // AWS S3 compatible.
    //
    // Therefore, Format returns the last 16 bytes of an encrypted
    // ETag.
    //
    // In general, a caller has to distinguish the following cases:
    //   - The object is a multipart object. In this case,
    //     Format returns the ETag unmodified.
    //   - The object is a SSE-KMS or SSE-C encrypted single-
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Joiner.java

         * However, Joiner.on(...).useForNull(...).join(somethingThatContainsNull) *is* safe -- because
         * it returns a subclass of Joiner that overrides this method to tolerate null inputs.
         *
         * Unfortunately, we don't distinguish between these two cases in our public API: Joiner.on(...)
         * and Joiner.on(...).useForNull(...) both declare the same return type: plain Joiner. To ensure
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/fmt.go

    // for identical types, even across compilation units.
    //
    // NameString qualifies identifiers by package name, so it has
    // collisions when different packages share the same names and
    // identifiers. It also does not distinguish function-scope defined
    // types from package-scoped defined types or from each other.
    func (t *Type) NameString() string {
    	return tconv(t, 0, fmtTypeIDName)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // each with parameter values "meeny", "miny", and "moe".
    
    INSTANTIATE_TEST_CASE_P(InstantiationName,
                            FooTest,
                            Values("meeny", "miny", "moe"));
    
    // To distinguish different instances of the pattern, (yes, you
    // can instantiate it more then once) the first argument to the
    // INSTANTIATE_TEST_CASE_P macro is a prefix that will be added to the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/expr.go

    		// standard version takes key by reference.
    		// orderState.expr made sure key is addressable.
    		return typecheck.NodAddr(key)
    	}
    	if assigned {
    		// mapassign does distinguish pointer vs. integer key.
    		return key
    	}
    	// mapaccess and mapdelete don't distinguish pointer vs. integer key.
    	switch fast {
    	case mapfast32ptr:
    		return ir.NewConvExpr(n.Pos(), ir.OCONVNOP, types.Types[types.TUINT32], key)
    	case mapfast64ptr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    That means the dependency metadata published with the binaries and headers — in the form of Gradle Module Metadata — is crucial.
    In particular, consumers of your library should be able to distinguish between two different types of dependencies: those that are only required to compile your library and those that are also required to compile the consumer.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/link.go

    type ABI uint8
    
    const (
    	// ABI0 is the stable stack-based ABI. It's important that the
    	// value of this is "0": we can't distinguish between
    	// references to data and ABI0 text symbols in assembly code,
    	// and hence this doesn't distinguish between symbols without
    	// an ABI and text symbols with ABI0.
    	ABI0 ABI = iota
    
    	// ABIInternal is the internal ABI that may change between Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. pkg/apis/batch/types.go

    	JobTemplate JobTemplateSpec
    
    	// The number of successful finished jobs to retain.
    	// This is a pointer to distinguish between explicit zero and not specified.
    	// +optional
    	SuccessfulJobsHistoryLimit *int32
    
    	// The number of failed finished jobs to retain.
    	// This is a pointer to distinguish between explicit zero and not specified.
    	// +optional
    	FailedJobsHistoryLimit *int32
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Joiner.java

         * However, Joiner.on(...).useForNull(...).join(somethingThatContainsNull) *is* safe -- because
         * it returns a subclass of Joiner that overrides this method to tolerate null inputs.
         *
         * Unfortunately, we don't distinguish between these two cases in our public API: Joiner.on(...)
         * and Joiner.on(...).useForNull(...) both declare the same return type: plain Joiner. To ensure
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    Plugins can be sourced from Gradle or the Gradle community.
    But when users want to organize their build logic or need specific build capabilities not provided by existing plugins, they can develop their own.
    
    As such, we distinguish between three different kinds of plugins:
    
    1. *Core Plugins* - plugins that come from Gradle.
    2. *Community Plugins* - plugins that come from link:https://plugins.gradle.org/[Gradle Plugin Portal] or a public repository.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top