Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 for Distinguishes (0.23 sec)

  1. src/cmd/compile/internal/noder/codes.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package noder
    
    import "internal/pkgbits"
    
    // A codeStmt distinguishes among statement encodings.
    type codeStmt int
    
    func (c codeStmt) Marker() pkgbits.SyncMarker { return pkgbits.SyncStmt1 }
    func (c codeStmt) Value() int                 { return int(c) }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 20:07:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/internal/pkgbits/codes.go

    type Code interface {
    	// Marker returns the SyncMarker for the Code's dynamic type.
    	Marker() SyncMarker
    
    	// Value returns the Code's ordinal value.
    	Value() int
    }
    
    // A CodeVal distinguishes among go/constant.Value encodings.
    type CodeVal int
    
    func (c CodeVal) Marker() SyncMarker { return SyncVal }
    func (c CodeVal) Value() int         { return int(c) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 16:15:47 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. istioctl/pkg/util/common.go

    	},
    }
    
    var ManifestsFlagHelpStr = `Specify a path to a directory of charts and profiles
    (e.g. ~/Downloads/istio-` + binversion.OperatorVersionString + `/manifests).`
    
    // CommandParseError distinguishes an error parsing istioctl CLI arguments from an error processing
    type CommandParseError struct {
    	Err error
    }
    
    func (c CommandParseError) Error() string {
    	return c.Err.Error()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. security/pkg/util/jwtutil.go

    	// It is empty for the default K8S tokens.
    	Aud []string `json:"aud"`
    }
    
    // ExtractJwtAud extracts the audiences from a JWT token. If aud cannot be parse, the bool will be set
    // to false. This distinguishes aud=[] from not parsed.
    func ExtractJwtAud(jwt string) ([]string, bool) {
    	jwtSplit := strings.Split(jwt, ".")
    	if len(jwtSplit) != 3 {
    		return nil, false
    	}
    	payload := jwtSplit[1]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/PlannedTransformStepIdentity.java

         */
        @Nullable
        ConfigurationIdentity getDependenciesConfigurationIdentity();
    
        /**
         * An opaque identifier distinguishes between different transform step nodes in case other identity properties are the same.
         */
        long getTransformStepNodeId();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/PropertyAccessorType.java

    import javax.annotation.Nullable;
    import java.beans.Introspector;
    import java.lang.reflect.Method;
    import java.lang.reflect.Modifier;
    import java.lang.reflect.Type;
    import java.util.Collection;
    
    /**
     * Distinguishes "get" getters, "is" getters and setters from non-property methods.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. cluster/images/etcd/README.md

    `<etcd-version>-<image-revision>`, e.g. `3.0.17-0`.  The etcd version is the
    SemVer of latest etcd version available in the image. The image revision
    distinguishes between docker images with the same lastest etcd version but
    changes (bug fixes and backward compatible improvements) to the migration
    utility bundled with the image.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 12:41:39 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectSchemaHashCodeTest.kt

                                entry<TaskContainer, DefaultTask>("clean")
                            )
                        )
                    )
                )
            )
        }
    
        @Test
        fun `hash code distinguishes between extensions, conventions and container elements`() {
    
            val entries = listOf(
                entry<TaskContainer, String>("tag")
            )
    
            assertThat(
                hashCodeFor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. src/encoding/csv/writer.go

    // fields which start with a space must be enclosed in quotes.
    // We used to quote empty strings, but we do not anymore (as of Go 1.4).
    // The two representations should be equivalent, but Postgres distinguishes
    // quoted vs non-quoted empty string during database imports, and it has
    // an option to force the quoted behavior for non-quoted CSV but it has
    // no option to force the non-quoted behavior for quoted CSV, making
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. src/net/http/transport_dial_test.go

    	dialCount      int
    }
    
    // A transportDialTesterRoundTrip is a RoundTrip made as part of a dial test.
    type transportDialTesterRoundTrip struct {
    	t *testing.T
    
    	roundTripID int                // distinguishes RoundTrips in logs
    	cancel      context.CancelFunc // cancels the Request context
    	reqBody     io.WriteCloser     // write half of the Request.Body
    	finished    bool
    
    	done chan struct{} // closed when RoundTrip returns:w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top