Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for alternate (0.18 sec)

  1. src/regexp/syntax/parse.go

    	if len(subs) == 0 {
    		return p.push(p.newRegexp(OpEmptyMatch))
    	}
    
    	return p.push(p.collapse(subs, OpConcat))
    }
    
    // alternate replaces the top of the stack (above the topmost '(') with its alternation.
    func (p *parser) alternate() *Regexp {
    	// Scan down to find pseudo-operator (.
    	// There are no | above (.
    	i := len(p.stack)
    	for i > 0 && p.stack[i-1].Op < opPseudo {
    		i--
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		}
    		if len(item.alternate) == 0 {
    			continue
    		}
    		q, err = ParseQuantity(item.alternate)
    		if err != nil {
    			t.Errorf("%#v: unexpected error: %v", item.expect, err)
    			continue
    		}
    		if len(q.s) != 0 {
    			t.Errorf("%#v: unexpected nested string: %v", item.expect, q.s)
    		}
    		if q.String() != item.expect {
    			t.Errorf("%#v: unexpected alternate canonical: %v", item.expect, q.String())
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            supplierInteractions = withPerVersionStatusSupplier(metadataFile, true, "println 'Alternate implementation'")
            run 'checkDeps'
    
            then:
            outputContains("Providing metadata for group:projectB:2.2")
            outputContains("Providing metadata for group:projectB:1.1")
            outputContains("Alternate implementation")
    
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            assertValueIs(['2', '3d', '4', '5', '6'], property3)
        }
    
        def "can alternate append and add"() {
            when:
            property.append("1")
            property.add("2")
            property.append("3")
    
            then:
            assertValueIs toImmutable(["1", "2", "3"])
        }
    
        def "can alternate add and append"() {
            when:
            property.add("1")
            property.append("2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    	}
    	tr.mu.Unlock()
    }
    
    // useRegisteredProtocol reports whether an alternate protocol (as registered
    // with Transport.RegisterProtocol) should be respected for this request.
    func (t *Transport) useRegisteredProtocol(req *Request) bool {
    	if req.URL.Scheme == "https" && req.requiresHTTP1() {
    		// If this request requires HTTP/1, don't use the
    		// "https" alternate protocol, which is used by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            1 * transform.transform(_)
        }
    
        def "can alternate insert and put"() {
            when:
            property.insert("k1", "1")
            property.put("k2", "2")
            property.insert("k3", "3")
            property.put("k2", "4")
    
            then:
            assertValueIs(['k1': '1', 'k2': '4', 'k3': '3'])
        }
    
        def "can alternate put and insert"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"retryAfterSeconds": "If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.",
    }
    
    func (StatusDetails) SwaggerDoc() map[string]string {
    	return map_StatusDetails
    }
    
    var map_Table = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      repeated StatusCause causes = 4;
    
      // If specified, the time in seconds before the operation should be retried. Some errors may indicate
      // the client must take an alternate action - for those errors this field may indicate how long to wait
      // before taking the alternate action.
      // +optional
      optional int32 retryAfterSeconds = 5;
    }
    
    // TableOptions are used when a Table is requested by the caller.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      repeated StatusCause causes = 4;
    
      // If specified, the time in seconds before the operation should be retried. Some errors may indicate
      // the client must take an alternate action - for those errors this field may indicate how long to wait
      // before taking the alternate action.
      // +optional
      optional int32 retryAfterSeconds = 5;
    }
    
    // TableOptions are used when a Table is requested by the caller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      string DebugStringForCyclesGraphNode(int node_id, bool* found_unclustered);
    
      // We could not contract the edge from `from` to `to`.  Return a string
      // describing an alternate path from `from` to `to` (besides the direct edge
      // from `from` to `to`) which would have created a cycle had we contracted the
      // edge.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top