Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 368 for alternate (0.35 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      string DebugStringForCyclesGraphNode(int node_id, bool* found_unclustered);
    
      // We could not contract the edge from `from` to `to`.  Return a string
      // describing an alternate path from `from` to `to` (besides the direct edge
      // from `from` to `to`) which would have created a cycle had we contracted the
      // edge.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/Files.java

       * will drop the {@code ":.txt"} part of the name when the file is actually created on the
       * filesystem due to NTFS's <a href="https://goo.gl/vTpJi4">Alternate Data Streams</a>.
       *
       * @since 11.0
       */
      public static String getFileExtension(String fullName) {
        checkNotNull(fullName);
        String fileName = new File(fullName).getName();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/decl.go

    		// method names.
    		for _, fld := range t.fields {
    			if fld.name != "_" {
    				if alt := mset.insert(fld); alt != nil {
    					// Struct fields should already be unique, so we should only
    					// encounter an alternate via collision with a method name.
    					_ = alt.(*Func)
    
    					// For historical consistency, we report the primary error on the
    					// method, and the alt decl on the field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  4. src/net/lookup.go

    	// not enabled by default because it may affect compatibility
    	// with resolvers that process AAAA queries incorrectly.
    	StrictErrors bool
    
    	// Dial optionally specifies an alternate dialer for use by
    	// Go's built-in DNS resolver to make TCP and UDP connections
    	// to DNS services. The host in the address parameter will
    	// always be a literal IP address and not a host name, and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/BaseEncoding.java

       * section 3.2</a>, Padding of Encoded Data.
       */
      public abstract BaseEncoding omitPadding();
    
      /**
       * Returns an encoding that behaves equivalently to this encoding, but uses an alternate character
       * for padding.
       *
       * @throws IllegalArgumentException if this padding character is already used in the alphabet or a
       *     separator
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    var printVerbs = []printVerb{
    	// '-' is a width modifier, always valid.
    	// '.' is a precision for float, max width for strings.
    	// '+' is required sign for numbers, Go format for %v.
    	// '#' is alternate format for several verbs.
    	// ' ' is spacer for numbers
    	{'%', noFlag, 0},
    	{'b', sharpNumFlag, argInt | argFloat | argComplex | argPointer},
    	{'c', "-", argRune | argInt},
    	{'d', numFlag, argInt | argPointer},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  7. src/go/types/decl.go

    		// method names.
    		for _, fld := range t.fields {
    			if fld.name != "_" {
    				if alt := mset.insert(fld); alt != nil {
    					// Struct fields should already be unique, so we should only
    					// encounter an alternate via collision with a method name.
    					_ = alt.(*Func)
    
    					// For historical consistency, we report the primary error on the
    					// method, and the alt decl on the field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  8. src/database/sql/fakedb_test.go

    		return t.coltype[i], true
    	}
    	return "", false
    }
    
    func (c *fakeConn) isBad() bool {
    	if c.stickyBad {
    		return true
    	} else if c.bad {
    		if c.db == nil {
    			return false
    		}
    		// alternate between bad conn and not bad conn
    		c.db.badConn = !c.db.badConn
    		return c.db.badConn
    	} else {
    		return false
    	}
    }
    
    func (c *fakeConn) isDirtyAndMark() bool {
    	if c.skipDirtySession {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/apps/v1/generated.proto

    // in this StatefulSet.
    message StatefulSetOrdinals {
      // start is the number representing the first replica's index. It may be used
      // to number replicas from an alternate index (eg: 1-indexed) over the default
      // 0-indexed names, or to orchestrate progressive movement of replicas from
      // one StatefulSet to another.
      // If set, replica indices will be in the range:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/generated.proto

    // in this StatefulSet.
    message StatefulSetOrdinals {
      // start is the number representing the first replica's index. It may be used
      // to number replicas from an alternate index (eg: 1-indexed) over the default
      // 0-indexed names, or to orchestrate progressive movement of replicas from
      // one StatefulSet to another.
      // If set, replica indices will be in the range:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top