Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,099 for myHost (0.11 sec)

  1. src/cmd/go/testdata/script/mod_get_pseudo_prefix.txt

    # to 'go get', when using a repo with go.mod in a sub directory.
    
    [short] skip
    [!git] skip
    
    # For this test repository go.mod resides in sub/ (only):
    #  master is not tagged
    #  tag v0.2.0 is most recent tag before master
    #  tag sub/v0.0.10 is most recent tag before v0.2.0
    #
    # The pseudo-version is based on sub/v0.0.10, since v0.2.0 doesn't
    # contain the prefix.
    go get vcs-test.golang.org/git/prefixtagtests.git/sub
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. architecture/README.md

    ## Platform architecture
    
    Gradle is arranged into several coarse-grained components called "platforms".
    Each platform provides support for some kind of automation, such as building JVM software or building Gradle plugins.
    Most platforms typically build on the features of other platforms.
    
    By understanding the Gradle platforms and their relationships, you can get a feel for where in the Gradle source a particular feature might be implemented.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/example2/v1/types.go

    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
    	// +optional
    	Spec ReplicaSetSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
    
    	// 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 Aug 29 00:35:16 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  4. src/internal/goarch/goarch.go

    // DefaultPhysPageSize is the default physical page size.
    const DefaultPhysPageSize = _DefaultPhysPageSize
    
    // PCQuantum is the minimal unit for a program counter (1 on x86, 4 on most other systems).
    // The various PC tables record PC deltas pre-divided by PCQuantum.
    const PCQuantum = _PCQuantum
    
    // Int64Align is the required alignment for a 64-bit integer (4 on 32-bit systems, 8 on 64-bit).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:48:21 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/versions/ReleasedVersionDistributionsTest.groovy

            !versions.all.empty
            versions.all*.version == versions.all*.version.sort().reverse()
        }
    
        def "get most recent final does that"() {
            when:
            props.mostRecent = "1.2"
    
            then:
            versions().mostRecentRelease.version == version("1.2")
        }
    
        def "get most recent snapshot does that"() {
            when:
            props.mostRecentSnapshot = "2.5-20150413220018+0000"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/events/v1/types.go

    	// This field cannot be empty for new Events and it can have at most 128 characters.
    	ReportingInstance string `json:"reportingInstance,omitempty" protobuf:"bytes,5,opt,name=reportingInstance"`
    
    	// action is what action was taken/failed regarding to the regarding object. It is machine-readable.
    	// This field cannot be empty for new Events and it can have at most 128 characters.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. pkg/apis/policy/types.go

    	// +optional
    	MinAvailable *intstr.IntOrString
    
    	// Label query over pods whose evictions are managed by the disruption
    	// budget.
    	// +optional
    	Selector *metav1.LabelSelector
    
    	// An eviction is allowed if at most "maxUnavailable" pods selected by
    	// "selector" are unavailable after the eviction, i.e. even in absence of
    	// the evicted pod. For example, one can prevent all voluntary evictions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

          return hostname == pattern
        }
    
        // Wildcard pattern
    
        // WILDCARD PATTERN RULES:
        // 1. Asterisk (*) is only permitted in the left-most domain name label and must be the
        //    only character in that label (i.e., must match the whole left-most label).
        //    For example, *.example.com is permitted, while *a.example.com, a*.example.com,
        //    a*b.example.com, a.*.example.com are not permitted.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. src/cmd/covdata/merge.go

    // merge operation. This type implements the CovDataVisitor interface,
    // and is designed to be used in concert with the CovDataReader
    // utility, which abstracts away most of the grubby details of reading
    // coverage data files. Most of the heavy lifting for merging is done
    // using apis from 'metaMerge' (this is mainly a wrapper around that
    // functionality).
    type mstate struct {
    	mm *metaMerge
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top