Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 139 for Leading (0.17 sec)

  1. samples/bookinfo/src/productpage/templates/productpage.html

            <h2 class="mt-5 text-center text-2xl font-bold leading-9 tracking-tight text-gray-900">Sign in to BookInfo</h2>
        </div>
        <div class="mt-10 sm:mx-auto sm:w-full sm:max-w-sm">
          <form class="space-y-6" method="post" action='login' name="login_form">
            <div>
              <label for="email" class="block text-sm font-medium leading-6 text-gray-900">Username</label>
              <div class="mt-2">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/crypto/x509/oid.go

    		return OID{}, false
    	}
    
    	start := 0
    	for i, v := range der {
    		// ITU-T X.690, section 8.19.2:
    		// The subidentifier shall be encoded in the fewest possible octets,
    		// that is, the leading octet of the subidentifier shall not have the value 0x80.
    		if i == start && v == 0x80 {
    			return OID{}, false
    		}
    		if v&0x80 == 0 {
    			start = i + 1
    		}
    	}
    
    	return OID{der}, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-utils_test.go

    			transfi.TransitionTier = "MINIO-TIER"
    			transfi.TransitionedObjName = mustGetUUID()
    			xl.DeleteVersion(transfi)
    
    			fi.SetTierFreeVersionID(mustGetUUID())
    			// delete this version leading to a free version
    			xl.DeleteVersion(fi)
    			freeVersionIDs = append(freeVersionIDs, fi.TierFreeVersionID())
    			allVersionIDs = append(allVersionIDs, fi.TierFreeVersionID())
    		} else {
    			versions = append(versions, fi)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiModelQueryIntegrationTest.groovy

            withSomeToolingModelBuilderPluginInBuildSrc()
            settingsFile << """
                include("a")
                include("b")
            """
            // Materializing of `ValueSource` at configuration time is leading to serializing its `Class`
            file("a/build.gradle") << """
                import org.gradle.api.provider.ValueSourceParameters
    
                plugins.apply(my.MyPlugin)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/sha3/shake.go

    // produces minimum-length outputs that provide full-strength generic
    // security.
    type ShakeHash interface {
    	hash.Hash
    
    	// Read reads more output from the hash; reading affects the hash's
    	// state. (ShakeHash.Read is thus very different from Hash.Sum)
    	// It never returns an error, but subsequent calls to Write or Sum
    	// will panic.
    	io.Reader
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. pilot/pkg/xds/ads.go

    	if err = s.globalPushContext().InitContext(s.Env, nil, nil); err != nil {
    		// Error accessing the data - log and close, maybe a different pilot replica
    		// has more luck
    		log.Warnf("Error reading config %v", err)
    		return status.Error(codes.Unavailable, "error reading config")
    	}
    	con := newConnection(peerAddr, stream)
    	con.ids = ids
    	con.s = s
    	return xds.Stream(con)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. src/time/format.go

    }
    
    // String returns the time formatted using the format string
    //
    //	"2006-01-02 15:04:05.999999999 -0700 MST"
    //
    // If the time has a monotonic clock reading, the returned string
    // includes a final field "m=±<value>", where value is the monotonic
    // clock reading formatted as a decimal number of seconds.
    //
    // The returned string is meant for debugging; for a stable serialized
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. JavadocStyleGuide.md

    | 4  | `@see`        | Adds a “See Also” heading with a link or text entry that points to a reference | `@see string`<br>`@see <a href=”URL#value”>label</a>`<br>`@see package.class#member label`                                                                                                                         |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    			},
    		},
    	}
    }
    
    // removeEmptySections removes headings with no content. A heading has no content
    // if there are no blocks between it and the next heading at the same level, or the
    // end of the document.
    func removeEmptySections(bs []md.Block) []md.Block {
    	res := bs[:0]
    	delta := 0 // number of lines by which to adjust positions
    
    	// Remove preceding headings at same or higher level; they are empty.
    	rem := func(level int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/net/netip/netip.go

    	if ip.Is6() && ip.z != z6noz {
    		return Prefix{}, parsePrefixError{in: s, msg: "IPv6 zones cannot be present in a prefix"}
    	}
    
    	bitsStr := s[i+1:]
    
    	// strconv.Atoi accepts a leading sign and leading zeroes, but we don't want that.
    	if len(bitsStr) > 1 && (bitsStr[0] < '1' || bitsStr[0] > '9') {
    		return Prefix{}, parsePrefixError{in: s, msg: "bad bits after slash: " + strconv.Quote(bitsStr)}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top