Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 194 for Percent (0.14 sec)

  1. tests/integration/pilot/mirror_test.go

    //	| Host0 | ----------> | Host1 | ----------> | Host2 |
    //	|-------|             |-------|             |-------|
    //
    
    type VirtualServiceMirrorConfig struct {
    	Name       string
    	Absent     bool
    	Percent    float64
    	MirrorHost string
    }
    
    type testCaseMirror struct {
    	name                string
    	absent              bool
    	percentage          float64
    	threshold           float64
    	expectedDestination echo.Instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/url-no-decoding/pom.xml

      <name>Maven Integration Test :: MNG-4116</name>
      <description>
        Test that the project builder does not decode URLs (which must be done by the transport layer instead).
      </description>
    
      <!-- some URLs using percent-encoded characters -->
      <url>https://maven.apache.org/spacy%20path</url>
      <scm>
        <connection>scm:svn:svn+ssh://svn.apache.org/spacy%20path</connection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/lease_manager.go

    	client                  *clientv3.Client // etcd client used to grant leases
    	leaseMu                 sync.Mutex
    	prevLeaseID             clientv3.LeaseID
    	prevLeaseExpirationTime time.Time
    	// The period of time in seconds and percent of TTL that each lease is
    	// reused. The minimum of them is used to avoid unreasonably large
    	// numbers.
    	leaseReuseDurationSeconds   int64
    	leaseReuseDurationPercent   float64
    	leaseMaxAttachedObjectCount int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 13:53:06 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/cover_coverpkg_partial.txt

    stdout '^\s*M/f\s+coverage: 0.0% of statements'
    
    # Test just the test-only package ./e but with -coverpkg=./...
    # Total number of statements should be 7 (e.g. a/b/d/f but not c)
    # and covered percent should be 6/7 (we hit everything in the
    # coverpkg pattern except the func in "d").
    go test -coverprofile=bar.p -coverpkg=./... ./e
    stdout '^ok\s+M/e\s+\S+\s+coverage: 85.7% of statements in ./...'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:12:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/PageRenderer.java

                    htmlWriter.startElement("div").attribute("class", "infoBox " + results.getStatusClass()).attribute("id", "successRate");
                    htmlWriter.startElement("div").attribute("class", "percent").characters(results.getFormattedSuccessRate()).endElement();
                    htmlWriter.startElement("p").characters("successful").endElement();
                    htmlWriter.endElement();
                    htmlWriter.endElement();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. manifests/charts/istio-cni/values.yaml

        # `updateStrategy.rollingUpdate.maxUnavailable` here:
        # https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/daemon-set-v1/#DaemonSetSpec).
        # May be specified as a number of pods or as a percent of the total number
        # of pods at the start of the update.
        rollingMaxUnavailable: 1
    
      # Revision is set as 'version' label and part of the resource names when installing multiple control planes.
      revision: ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/shufflesharding/shufflesharding_test.go

    		}
    
    		goodPct := 100 * float64(goodSum) / float64(numHandsSeen)
    
    		t.Logf("good percentage = %v, histogram = %v", goodPct, histogram)
    		if goodSum != numHandsSeen {
    			t.Errorf("Only %v percent of the hands got a central count", goodPct)
    		}
    	}
    }
    
    func TestDealer_DealIntoHand(t *testing.T) {
    	dealer, _ := NewDealer(6, 6)
    
    	tests := []struct {
    		name         string
    		hand         []int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 25 06:44:08 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  8. src/html/template/url.go

    		// so can be safely encoded.
    		case '!', '#', '$', '&', '*', '+', ',', '/', ':', ';', '=', '?', '@', '[', ']':
    			if norm {
    				continue
    			}
    		// Unreserved according to RFC 3986 sec 2.3
    		// "For consistency, percent-encoded octets in the ranges of
    		// ALPHA (%41-%5A and %61-%7A), DIGIT (%30-%39), hyphen (%2D),
    		// period (%2E), underscore (%5F), or tilde (%7E) should not be
    		// created by URI producers
    		case '-', '.', '_', '~':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/grpcgen/grpcecho_test.go

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: echo-delay
    spec:
      hosts:
      - echo-app.default.svc.cluster.local
      http:
      - fault:
          delay:
            percent: 100
            fixedDelay: 100ms
        route:
        - destination:
            host: echo-app.default.svc.cluster.local
    `,
    	}, echoCfg{version: "v1"})
    	c := tt.dialEcho("xds:///echo-app.default.svc.cluster.local:7071")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. src/cmd/cover/cfg_test.go

    	if inf, err := os.Open(mpath); err != nil {
    		t.Fatalf("meta-data file not created: %v", err)
    	} else {
    		inf.Close()
    	}
    
    	// Make sure it is digestible.
    	cdargs := []string{"tool", "covdata", "percent", "-i", mdir}
    	cmd := testenv.Command(t, testenv.GoToolPath(t), cdargs...)
    	run(cmd, t)
    }
    
    func testCoverNoTestsNoFuncs(t *testing.T) {
    	t.Parallel()
    	dir := tempDir(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top