Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,601 for Here (0.04 sec)

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

    # Earlier versions of Go printed the same as 'go -h' here.
    # Also make sure we print the short help line.
    ! go vet -h
    stderr 'usage: go vet .*'
    stderr 'Run ''go help vet'' for details.'
    stderr 'Run ''go tool vet help'' for a full list of flags and analyzers.'
    stderr 'Run ''go tool vet -help'' for an overview.'
    
    # Earlier versions of Go printed a large document here, instead of these two
    # lines.
    ! go test -h
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/features/kube_features.go

    limitations under the License.
    */
    
    package features
    
    import (
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/component-base/featuregate"
    )
    
    const (
    	// Every feature gate should add method here following this template:
    	//
    	// // owner: @username
    	// // alpha: v1.4
    	// MyFeature() bool
    
    	// owner: @alexzielenski
    	// alpha: v1.28
    	//
    	// Ignores errors raised on unchanged fields of Custom Resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:53:03 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. .github/workflows/codeql-analysis.yml

          with:
            languages: ${{ matrix.language }}
            tools: latest
            # If you wish to specify custom queries, you can do so here or in a config file.
            # By default, queries listed here will override any specified in a config file.
            # Prefix the list here with "+" to use these queries and those in the config file.
            # queries: ./path/to/local/query, your-org/your-repo/queries@main
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. docs/orchestration/docker-compose/README.md

    ## 1. Prerequisites
    
    * Familiarity with [Docker Compose](https://docs.docker.com/compose/overview/).
    * Docker installed on your machine. Download the relevant installer from [here](https://www.docker.com/community-edition#/download).
    
    ## 2. Run Distributed MinIO on Docker Compose
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 31 19:20:56 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue51472.go

    func _[T interface{comparable; ~[]byte}](x T) {
            _ = x /* ERROR "empty type set" */ == x
    }
    
    // TODO(gri) The error message here should be better. See issue #51525.
    func _[T interface{comparable; ~int; ~string}](x T) {
            _ = x /* ERROR "empty type set" */ == x
    }
    
    // TODO(gri) The error message here should be better. See issue #51525.
    func _[T interface{~int; ~string}](x T) {
            _ = x /* ERROR "empty type set" */ == x
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 22:48:09 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/build_pgo_auto_multi.txt

    stderr 'preprofile.*-i.*a(/|\\\\)default\.pgo'
    stderr 'preprofile.*-i.*b(/|\\\\)default\.pgo'
    
    # a and b built once each with PGO.
    # Ideally we would check that the passed profile is the expected profile (here
    # and for dependencies). Unfortunately there is no nice way to map the expected
    # paths after preprocessing.
    stderr -count=1 'compile.*-pgoprofile=.*a(/|\\\\)a\.go'
    stderr -count=1 'compile.*-pgoprofile=.*b(/|\\\\)b\.go'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:38:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/runtime/os2_plan9.go

    	kcycles   int64  // cycles spent in kernel
    	pcycles   int64  // cycles spent in process (kernel + user)
    	pid       uint32 // might as well put the pid here
    	clock     uint32
    	// top of stack is here
    }
    
    const (
    	_NSIG   = 14  // number of signals in sigtable array
    	_ERRMAX = 128 // max length of note string
    
    	// Notes in runtimeĀ·sigtab that are handled by runtimeĀ·sigpanic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 14 18:33:38 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  8. cluster/addons/dns/nodelocaldns/README.md

    Design details [here](https://github.com/kubernetes/enhancements/blob/master/keps/sig-network/1024-nodelocal-cache-dns/README.md)
    
    This feature is graduating to GA in release 1.18(Beta in release 1.15).
    
    ## nodelocaldns addon template
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. ci/official/containers/linux_arm64/devel.usertools/code_check_changed_files.bats

    # Note: this is excluded on the full code base, since any submitted code must
    # have passed Google's internal style guidelines.
    @test "Check buildifier formatting on BUILD files" {
        echo "buildifier formatting is recommended. Here are the suggested fixes:"
        echo "============================="
        grep -e 'BUILD' $BATS_FILE_TMPDIR/changed_files \
            | xargs buildifier -v -mode=diff -diff_command="git diff --no-index"
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. pkg/registry/core/persistentvolumeclaim/storage/storage.go

    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"pvc"}
    }
    
    // defaultOnRead sets interlinked fields that were not previously set on read.
    // We can't do this in the normal defaulting path because that same logic
    // applies on Get, Create, and Update, but we need to distinguish between them.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 5.8K bytes
    - Viewed (0)
Back to top