Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,099 for myHost (0.12 sec)

  1. src/crypto/rand/util.go

    			return nil, err
    		}
    
    		// Clear bits in the first byte to make sure the candidate has a size <= bits.
    		bytes[0] &= uint8(int(1<<b) - 1)
    		// Don't let the value be too small, i.e, set the most significant two bits.
    		// Setting the top two bits, rather than just the top bit,
    		// means that when two of these values are multiplied together,
    		// the result isn't ever one bit short.
    		if b >= 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/example2/v1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional ReplicaSetSpec spec = 2;
    
      // Status is the most recently observed status of the ReplicaSet.
      // This data may be out of date by some window of time.
      // Populated by the system.
      // Read-only.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. internal/s3select/sql/parser_test.go

    	// }
    }
    
    func TestParseSelectStatement(t *testing.T) {
    	exp, err := ParseSelectStatement("select _3,_1,_2 as 'mytest'  from S3object")
    	if err != nil {
    		t.Fatalf("parse alias sql error: %v", err)
    	}
    	if exp.selectAST.Expression.Expressions[2].As != "mytest" {
    		t.Fatalf("parse alias sql error: %s not equal %s", exp.selectAST.Expression.Expressions[2].As, err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/policy/v1/types_swagger_doc_generated.go

    	"spec":     "Specification of the desired behavior of the PodDisruptionBudget.",
    	"status":   "Most recently observed status of the PodDisruptionBudget.",
    }
    
    func (PodDisruptionBudget) SwaggerDoc() map[string]string {
    	return map_PodDisruptionBudget
    }
    
    var map_PodDisruptionBudgetList = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 20 23:36:45 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/policy/v1beta1/types_swagger_doc_generated.go

    	"spec":     "Specification of the desired behavior of the PodDisruptionBudget.",
    	"status":   "Most recently observed status of the PodDisruptionBudget.",
    }
    
    func (PodDisruptionBudget) SwaggerDoc() map[string]string {
    	return map_PodDisruptionBudget
    }
    
    var map_PodDisruptionBudgetList = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/policy/v1/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Specification of the desired behavior of the PodDisruptionBudget.
      // +optional
      optional PodDisruptionBudgetSpec spec = 2;
    
      // Most recently observed status of the PodDisruptionBudget.
      // +optional
      optional PodDisruptionBudgetStatus status = 3;
    }
    
    // PodDisruptionBudgetList is a collection of PodDisruptionBudgets.
    message PodDisruptionBudgetList {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ParallelDependencyResolutionIntegrationTest.groovy

            executer.withArgument('--info')
    
            executer.requireOwnGradleUserHomeDir()
        }
    
        def "dependency is only downloaded at most once per build using Maven"() {
            def module = mavenHttpRepo.module("com.acme", "dummy", "1.0-SNAPSHOT").publish()
    
            given:
            module.metaData.expectGet()
            ('a'..'z').each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. overview.html

    types (such as multimap and multiset), immutable collections, a graph library,
    and utilities for concurrency, I/O, hashing, primitives, strings, and more! It
    is widely used on most Java projects within Google, and widely used by many
    other companies as well.
    
    
    <p>For more information, see <a href="https://guava.dev/">guava.dev</a>.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 17 16:01:41 UTC 2023
    - 429 bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/html/HtmlEscapers.java

    import com.google.common.escape.Escaper;
    import com.google.common.escape.Escapers;
    
    /**
     * {@code Escaper} instances suitable for strings to be included in HTML attribute values and
     * most elements' text contents. When possible, avoid manual escaping by using templating
     * systems and high-level APIs that provide autoescaping.
     * One Google-authored templating system available for external use is <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 14 22:08:54 UTC 2021
    - 3K bytes
    - Viewed (0)
  10. test/fixedbugs/bug122.go

    // Copyright 2009 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 main
    
    func main() {
    	// should allow at most 2 sizes
    	a := make([]int, 10, 20, 30, 40); // ERROR "too many|expects 2 or 3 arguments; found 5"
    	_ = a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 18:13:13 UTC 2023
    - 334 bytes
    - Viewed (0)
Back to top