Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 186 for someConf (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. manifests/charts/istiod-remote/templates/istiod-injector-configmap.yaml

        injectedAnnotations:
          {{- range $key, $val := .Values.sidecarInjectorWebhook.injectedAnnotations }}
          "{{ $key }}": {{ $val | quote }}
          {{- end }}
        {{- /* If someone ends up with this new template, but an older Istiod image, they will attempt to render this template
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/templates/istiod-injector-configmap.yaml

        injectedAnnotations:
          {{- range $key, $val := .Values.sidecarInjectorWebhook.injectedAnnotations }}
          "{{ $key }}": {{ $val | quote }}
          {{- end }}
        {{- /* If someone ends up with this new template, but an older Istiod image, they will attempt to render this template
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. doc/next/9-todo.md

    <!-- These items need to be reviewed, and mentioned in the Go 1.23 release notes if applicable.
    
    None right now; more may come up later on.
    -->
    
    <!-- Maybe should be documented? Maybe shouldn't? Someone familiar with the change needs to determine.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top