Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 228 for someone (0.24 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/InterfaceBackedManagedTypeIntegrationTest.groovy

                apply type: RulePlugin
            '''
    
            then:
            succeeds "echo"
    
            and:
            output.contains("person: Person 'someone'")
            output.contains("name: someone")
            output.contains("display-name: Person 'someone'")
        }
    
        def "rule method can apply defaults to a managed model element"() {
            when:
            buildScript '''
                @Managed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. hack/dev-push-conformance.sh

    # This script builds some binaries and then the conformance image.
    # REGISTRY and VERSION must be set.
    # Example usage:
    #   $ export REGISTRY=gcr.io/someone
    #   $ export VERSION=v1.4.0-testfix
    #   ./hack/dev-push-conformance.sh
    # That will build and push gcr.io/someone/conformance-amd64:v1.4.0-testfix
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT="$(dirname "${BASH_SOURCE[0]}")/.."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 08 02:46:11 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. .github/DISCUSSION_TEMPLATE/questions.yml

          description: |
            Please add a self-contained, [minimal, reproducible, example](https://stackoverflow.com/help/minimal-reproducible-example) with your use case.
    
            If I (or someone) can copy it, run it, and see it right away, there's a much higher chance I (or someone) will be able to help you.
    
          placeholder: |
            from fastapi import FastAPI
    
            app = FastAPI()
    
    
            @app.get("/")
            def read_root():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 03 15:59:41 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. CODE_OF_CONDUCT.md

    
    ## Conflict Resolution
    
    Conflicts in an open source project can take many forms, from someone having a bad day and using harsh and hurtful language in the issue queue, to more serious instances such as sexist/racist statements or threats of violence, and everything in between.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 05 18:43:16 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  5. pilot/pkg/xds/util.go

    package xds
    
    import (
    	"fmt"
    	"strings"
    )
    
    func atMostNJoin(data []string, limit int) string {
    	if limit == 0 || limit == 1 {
    		// Assume limit >1, but make sure we dpn't crash if someone does pass those
    		return strings.Join(data, ", ")
    	}
    	if len(data) == 0 {
    		return ""
    	}
    	if len(data) < limit {
    		return strings.Join(data, ", ")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 1021 bytes
    - Viewed (0)
  6. prow/config/calico.md

    ```shell
    sed -ie "s?docker.io?gcr.io/istio-testing?g" calico.yaml
    ```
    
    In order to upgrade versions of calico we'll need to update the version below and then have someone with the ability to push run the following:
    
    ```shell
    export VERSION=v3.27.0
    
    crane cp {docker.io,gcr.io/istio-testing}/calico/cni:"${VERSION}"
    crane cp {docker.io,gcr.io/istio-testing}/calico/node:"${VERSION}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 16:19:34 UTC 2024
    - 793 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    ! stderr preferlinkext
    env CGO_CFLAGS=-fdebug-prefix-map=/Users/someone/.cache/bazel/_bazel_someone/3fa7e4650c43657ead684537951f49e2/sandbox/linux-sandbox/10/execroot/rules_go_static=.
    go build -x -n -o dummy.exe ./usesInternalCgo
    ! stderr preferlinkext
    # The -ffile-prefix-map=path is permitted for internal linking too.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/waitgroup/waitgroup_test.go

    		select {
    		case <-exited:
    			t.Fatal("SafeWaitGroup released group too soon")
    		default:
    		}
    		wg2.Done()
    	}
    	for i := 0; i != n; i++ {
    		<-exited // Will block if barrier fails to unlock someone.
    	}
    }
    
    func TestWaitGroupAddFail(t *testing.T) {
    	wg := &SafeWaitGroup{}
    	wg.Add(1)
    	wg.Done()
    	wg.Wait()
    	if err := wg.Add(1); err == nil {
    		t.Errorf("Should return error when add positive after Wait")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 13 05:42:40 UTC 2017
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/util/internal/WrapperDistributionUrlConverter.java

        public static URI convertDistributionUrl(String distributionUrl, File fileRoot) throws URISyntaxException {
            URI source = new URI(distributionUrl);
            if (source.getScheme() == null) {
                //  No scheme means someone passed a relative url.
                //  In our context only file relative urls make sense.
                return new File(fileRoot, source.getSchemeSpecificPart()).toURI();
            } else {
                return source;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/string_util.h

    std::string AttrAsString(mlir::Attribute& attr);
    
    // b/281863212 enable automatic without Op/AttrAsString.
    // We add logging via a wrapper struct in order to respect ODS and avoid
    // multiple symbol definitions if MLIR or someone else decides to add ostream
    // definitions for the MLIR symbols.
    struct LoggableOperation {
      mlir::Operation& v;
      // NOLINTNEXTLINE(google-explicit-constructor)
      LoggableOperation(mlir::Operation& v) : v(v) {}
    };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 15 19:47:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top