Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 501 for regUsed (0.18 sec)

  1. src/cmd/internal/obj/wasm/wasmobj.go

    		hasLocalSP = true
    
    		var regUsed [MAXREG - MINREG]bool
    		for p := s.Func().Text; p != nil; p = p.Link {
    			if p.From.Reg != 0 {
    				regUsed[p.From.Reg-MINREG] = true
    			}
    			if p.To.Reg != 0 {
    				regUsed[p.To.Reg-MINREG] = true
    			}
    		}
    
    		regs := []int16{REG_SP}
    		for reg := int16(REG_R0); reg <= REG_F31; reg++ {
    			if regUsed[reg-MINREG] {
    				regs = append(regs, reg)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/comparison/DiffUtils.java

        private void reduceEqualLinesFromHeadAndTail(
                List<String> original, List<String> revised, int contextSize) {
            int head = 0;
            int maxHead = min(original.size(), revised.size());
            while (head < maxHead && original.get(head).equals(revised.get(head))) {
                head++;
            }
            head = max(head - contextSize, 0);
            offsetHead = head;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/testdata/describe/http_config.json

                          "cluster": "outbound|9080||productpage.default.svc.cluster.local",
                          "timeout": "0s",
                          "retry_policy": {
                            "retry_on": "connect-failure,refused-stream,unavailable,cancelled,retriable-status-codes",
                            "num_retries": 2,
                            "retry_host_predicate": [
                              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/Result.java

         * then this method will return the time it took to produce the previous result.
         *
         * Note that reused work times might be different to what it would actually take to execute the work
         * in the current build for a number of reasons:
         *
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/testdata/describe/tls_config.json

                          "cluster": "outbound|9080||productpage.default.svc.cluster.local",
                          "timeout": "0s",
                          "retry_policy": {
                            "retry_on": "connect-failure,refused-stream,unavailable,cancelled,retriable-status-codes",
                            "num_retries": 2,
                            "retry_host_predicate": [
                              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. pilot/pkg/xds/testdata/none_rds.json

                      },
                      "HostRewriteSpecifier": null,
                      "timeout": 0,
                      "retry_policy": {
                        "retry_on": "connect-failure,refused-stream,unavailable,cancelled,resource-exhausted,retriable-status-codes",
                        "num_retries": {
                          "value": 2
                        },
                        "retry_host_predicate": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultExecutionOutputState.java

        private final boolean reused;
    
        public DefaultExecutionOutputState(boolean successful, ImmutableSortedMap<String, FileSystemSnapshot> outputFilesProducedByWork, OriginMetadata originMetadata, boolean reused) {
            this.successful = successful;
            this.outputFilesProducedByWork = outputFilesProducedByWork;
            this.originMetadata = originMetadata;
            this.reused = reused;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. pkg/registry/flowcontrol/ensurer/strategy.go

    		return zero, false, nil
    	}
    
    	var revised ObjectType
    	if specChanged {
    		revised = objectOps.ReplaceSpec(current, bootstrap)
    	} else {
    		revised = objectOps.DeepCopy(current)
    	}
    	if updateAnnotation {
    		setAutoUpdateAnnotation(revised, autoUpdateSpec)
    	}
    
    	return revised, true, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. src/net/http/transport_internal_test.go

    		err  error
    		want bool
    	}{
    		0: {
    			pc:   &persistConn{reused: false},
    			req:  dummyRequest("POST"),
    			err:  nothingWrittenError{},
    			want: false,
    		},
    		1: {
    			pc:   &persistConn{reused: true},
    			req:  dummyRequest("POST"),
    			err:  nothingWrittenError{},
    			want: true,
    		},
    		2: {
    			pc:   &persistConn{reused: true},
    			req:  dummyRequest("POST"),
    			err:  http2ErrNoCachedConn,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:57:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/SocksProxyResolveIntegrationTest.groovy

            when:
            fails('listJars')
            then:
            failure.assertHasCause("Could not resolve log4j:log4j:1.2.17.")
            failure.assertThatCause(CoreMatchers.containsString("Can't connect to SOCKS proxy:Connection refused"))
    
            when:
            def recordingServer = new TestRecordingSocksServer()
            proxyServer.start(recordingServer)
            proxyServer.configureProxy(executer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top