Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 5,637 for need (1.06 sec)

  1. test-site/activator

      # make sure we grab the actual windows path, instead of cygwin's path.
      if ! is_cygwin; then
        echo "$(pwd -P)/$TARGET_FILE"
      else
        echo $(cygwinpath "$(pwd -P)/$TARGET_FILE")
      fi
    )
    }
    
    # TODO - Do we need to detect msys?
    
    # Uses uname to detect if we're in the odd cygwin environment.
    is_cygwin() {
      local os=$(uname -s)
      case "$os" in
        CYGWIN*) return 0 ;;
        *)  return 1 ;;
      esac
    }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  2. src/go/doc/testdata/examples/values.go

    // license that can be found in the LICENSE file.
    
    package foo_test
    
    // Variable declaration with fewer values than names.
    
    func f() (int, int) {
    	return 1, 2
    }
    
    var a, b = f()
    
    // Need two examples to hit playExample.
    
    func ExampleA() {
    	_ = a
    }
    
    func ExampleB() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 377 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/toolingApi/runBuild/groovy/build.gradle

    // tag::use-tooling-api[]
    repositories {
        maven { url 'https://repo.gradle.org/gradle/libs-releases' }
    }
    
    dependencies {
        implementation "org.gradle:gradle-tooling-api:$toolingApiVersion"
        // The tooling API need an SLF4J implementation available at runtime, replace this with any other implementation
        runtimeOnly 'org.slf4j:slf4j-simple:1.7.10'
    }
    // end::use-tooling-api[]
    
    application {
        mainClass = 'org.gradle.sample.Main'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 525 bytes
    - Viewed (0)
  4. test/runtime/README

    // Copyright 2019 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.
    
    The runtime directory contains tests that specifically need
    to be compiled as-if in the runtime package.  For error-check
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 20:18:29 UTC 2019
    - 343 bytes
    - Viewed (0)
  5. test/syntax/composite.go

    // errorcheck
    
    // Copyright 2012 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
    
    var a = []int{
    	3 // ERROR "need trailing comma before newline in composite literal|possibly missing comma or }"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 00:26:58 UTC 2022
    - 304 bytes
    - Viewed (0)
  6. .github/workflows/codeql-analysis.yml

    # For most projects, this workflow file will not need changing; you simply need
    # to commit it to your repository.
    #
    # You may wish to alter this file to override the set of languages analyzed,
    # or to provide custom queries or build logic.
    name: "CodeQL"
    
    on:
      push:
        branches: [master]
      pull_request:
        # The branches below must be a subset of the branches above
        branches: [master]
      schedule:
        - cron: '0 9 * * 3'
    
    jobs:
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Oct 02 13:22:07 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/scheme.go

    			err := json.Unmarshal(data, obj)
    			if err != nil {
    				return nil, nil, err
    			}
    		}
    	}
    
    	return obj, gvk, nil
    }
    
    func (dynamicCodec) Encode(obj runtime.Object, w io.Writer) error {
    	// There is no need to handle runtime.CacheableObject, as we only
    	// fallback to other encoders here.
    	return unstructured.UnstructuredJSONScheme.Encode(obj, w)
    }
    
    // Identifier implements runtime.Encoder interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 21 15:58:15 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    	s, err := getStateData(cs)
    	if err != nil {
    		return framework.AsStatus(err)
    	}
    	if s.allBound {
    		// no need to bind volumes
    		return nil
    	}
    	// we don't need to hold the lock as only one node will be pre-bound for the given pod
    	podVolumes, ok := s.podVolumesByNode[nodeName]
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. .github/workflows/codeql-analysis.yml

    # For most projects, this workflow file will not need changing; you simply need
    # to commit it to your repository.
    #
    # You may wish to alter this file to override the set of languages analyzed,
    # or to provide custom queries or build logic.
    name: "CodeQL"
    
    on:
      push:
        branches: [master]
      pull_request:
        # The branches below must be a subset of the branches above
        branches: [master]
      schedule:
        - cron: '0 11 * * 4'
    
    jobs:
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Fri Oct 02 13:24:14 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  10. src/cmd/internal/bootstrap_test/reboot_test.go

    	t.Run("PATH reminder", func(t *testing.T) {
    		var want string
    		switch gorootBin := filepath.Join(goroot, "bin"); runtime.GOOS {
    		default:
    			want = fmt.Sprintf("*** You need to add %s to your PATH.", gorootBin)
    		case "plan9":
    			want = fmt.Sprintf("*** You need to bind %s before /bin.", gorootBin)
    		}
    		if got := stdout.String(); !strings.Contains(got, want) {
    			t.Errorf("reminder %q is missing from %s stdout:\n%s", want, makeScript, got)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top