Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 202 for combinations (0.26 sec)

  1. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    //
    //	message-header = field-name ":" [ field-value ]
    //	field-value    = *( field-content | LWS )
    //	field-content  = <the OCTETs making up the field-value
    //	                 and consisting of either *TEXT or combinations
    //	                 of token, separators, and quoted-string>
    //
    // http://www.w3.org/Protocols/rfc2616/rfc2616-sec2.html#sec2.2 :
    //
    //	TEXT           = <any OCTET except CTLs,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/secure/bidirule/bidirule.go

    //     the requirements of Section 3 are satisfied as long as a label
    //     that starts with an ASCII digit does not come after a
    //     right-to-left label.
    //
    //  No guarantee is given for other combinations.
    
    // ErrInvalid indicates a label is invalid according to the Bidi Rule.
    var ErrInvalid = errors.New("bidirule: failed Bidi Rule")
    
    type ruleState uint8
    
    const (
    	ruleInitial ruleState = iota
    	ruleLTR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 9.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Combinators.kt

    Rodrigo B. de Oliveira <******@****.***> 1716814779 -0300
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. test/fixedbugs/bug087.go

    const s string = "foo";
    
    func main() {
    	i := len(s);  // should be legal to take len() of a constant
    	_ = i;
    }
    
    /*
    uetli:~/Source/go1/test/bugs gri$ 6g bug087.go
    bug087.go:6: illegal combination of literals LEN 9
    bug087.go:6: illegal combination of literals LEN 9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 453 bytes
    - Viewed (0)
  5. build-logic/uber-plugins/src/main/kotlin/gradlebuild.kotlin-library.gradle.kts

        }
    }
    
    kotlin {
        target.compilations.named("testFixtures") {
            associateWith(target.compilations["main"])
        }
        target.compilations.named("test") {
            associateWith(target.compilations["main"])
            associateWith(target.compilations["testFixtures"])
        }
        target.compilations.named("integTest") {
            associateWith(target.compilations["main"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 13:36:27 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/toleration.go

    */
    
    package v1
    
    // MatchToleration checks if the toleration matches tolerationToMatch. Tolerations are unique by <key,effect,operator,value>,
    // if the two tolerations have same <key,effect,operator,value> combination, regard as they match.
    // TODO: uniqueness check for tolerations in api validations.
    func (t *Toleration) MatchToleration(tolerationToMatch *Toleration) bool {
    	return t.Key == tolerationToMatch.Key &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. test/fixedbugs/bug507.go

    // compiledir
    
    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Gccgo mishandled a combination of normal import and dot import.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 22 04:31:41 UTC 2020
    - 259 bytes
    - Viewed (0)
  8. test/fixedbugs/bug322.dir/main.go

    type I interface {
    	M()
    }
    
    type PI interface {
    	PM()
    }
    
    func main() {
    	var t lib.T
    	t.M()
    	t.PM()
    
    	// This is still an error.
    	// var i1 I = t
    	// i1.M()
    	
    	// This combination is illegal because
    	// PM requires a pointer receiver.
    	// var pi1 PI = t
    	// pi1.PM()
    
    	var pt = &t
    	pt.M()
    	pt.PM()
    
    	var i2 I = pt
    	i2.M()
    
    	var pi2 PI = pt
    	pi2.PM()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 24 23:48:19 UTC 2011
    - 540 bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/echotest/setup.go

    			ctx.Fatal(err)
    		}
    	}
    }
    
    func (t *T) hasSourceSetup() bool {
    	return len(t.sourceDeploymentSetup) > 0
    }
    
    // SetupForPair runs the given function for every source instance in every cluster in combination with every
    // destination service.
    //
    // Example of how long this setup lasts before the given context is cleaned up:
    //   - a/to_b/from_cluster-1
    //   - a/to_b/from_cluster-2
    //   - cleanup...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/extract_outside_compilation_pass.h

     private:
      string xla_cluster_attr_name_;
      string outside_compilation_attr_name_;
      string xla_cluster_name_;
      string new_function_name_;
    };
    
    // For an XLA computation function, replace all outside compilations with
    // XlaHostCompute nodes. Each outside compilation subgraph will be rewritten by
    // `RewriteOutsideCompilationSubgraphFn`, and they will be merged into one
    // single host side graph (`host_graph`).
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top