Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 155 for a$b (0.04 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

     private:
      // A subgraph of the input, all marked with a common 'group_attribute'
      // value.
      //
      // In the following simple example, A, B, ..., E are nodes in the original
      // graph. The group attributes g are each shown as either 0 or empty.
      //
      //  A  -->  B  -->  C  -->  D  -->  E
      //  g:      g:0     g:0     g:0     g:
      //
      // The example is rewritten to two graphs; one on the host and one to be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. src/net/http/client_test.go

    	}
    }
    
    func removeCommonLines(a, b string) (asuffix, bsuffix string, commonLines int) {
    	for {
    		nl := strings.IndexByte(a, '\n')
    		if nl < 0 {
    			return a, b, commonLines
    		}
    		line := a[:nl+1]
    		if !strings.HasPrefix(b, line) {
    			return a, b, commonLines
    		}
    		commonLines++
    		a = a[len(line):]
    		b = b[len(line):]
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. src/encoding/json/decode_test.go

    	*u = unmarshaler{true} // All we need to see that UnmarshalJSON is called.
    	return nil
    }
    
    type ustruct struct {
    	M unmarshaler
    }
    
    type unmarshalerText struct {
    	A, B string
    }
    
    // needed for re-marshaling tests
    func (u unmarshalerText) MarshalText() ([]byte, error) {
    	return []byte(u.A + ":" + u.B), nil
    }
    
    func (u *unmarshalerText) UnmarshalText(b []byte) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. src/index/suffixarray/sais2.go

    	// The encoding of N text bytes into a “length” word
    	// adds 1 to each byte, packs them into the bottom
    	// N*8 bits of a word, and then bitwise inverts the result.
    	// That is, the text sequence A B C (hex 41 42 43)
    	// encodes as ^uint64(0x42_43_44).
    	// LMS-substrings can never start or end with 0xFF.
    	// Adding 1 ensures the encoded byte sequence never
    	// starts or ends with 0x00, so that present bytes can be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/helpers.go

    		// prioritize evicting the pod which has the larger consumption of disk
    		return p2Disk.Cmp(p1Disk)
    	}
    }
    
    // cmpBool compares booleans, placing true before false
    func cmpBool(a, b bool) int {
    	if a == b {
    		return 0
    	}
    	if !b {
    		return -1
    	}
    	return 1
    }
    
    // rankMemoryPressure orders the input pods for eviction in response to memory pressure.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    						"enumField": "okValueNowBadValueLater",
    					}},
    				patchMyCRDV1Beta1Schema{
    					"restrict `enumField` to an enum of A, B, or C",
    					map[string]interface{}{
    						"properties": map[string]interface{}{
    							"enumField": map[string]interface{}{
    								"enum": []interface{}{
    									"A", "B", "C",
    								},
    							},
    							"otherField": map[string]interface{}{
    								"type": "string",
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

        def property = property()
    
        def "has empty map as value by default"() {
            expect:
            assertValueIs([:])
        }
    
        def "can change value to empty map"() {
            when:
            property.set([a: 'b'])
            property.empty()
            then:
            assertValueIs([:])
        }
    
        def "can set value using empty map"() {
            when:
            property.set([:])
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (CondSelect <t> x y (SET(EQ|NE|L|G|LE|GE|A|B|AE|BE|EQF|NEF|GF|GEF) cond)) && (is64BitInt(t) || isPtr(t))
        => (CMOVQ(EQ|NE|LT|GT|LE|GE|HI|CS|CC|LS|EQF|NEF|GTF|GEF) y x cond)
    (CondSelect <t> x y (SET(EQ|NE|L|G|LE|GE|A|B|AE|BE|EQF|NEF|GF|GEF) cond)) && is32BitInt(t)
        => (CMOVL(EQ|NE|LT|GT|LE|GE|HI|CS|CC|LS|EQF|NEF|GTF|GEF) y x cond)
    (CondSelect <t> x y (SET(EQ|NE|L|G|LE|GE|A|B|AE|BE|EQF|NEF|GF|GEF) cond)) && is16BitInt(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // original while body is unchanged. Example:
      // Original:
      //    %x = tf.while(%a, %b)
      //    ...
      //    while_body:
      //       call(f=@sc_fw, %arg0, %arg1)
      // Lifted:
      //    call(f=@sc_fw, %a, %b)
      //    %x = tf.while(%a, %b)
      //    ...
      func::FuncOp orig_parent_func =
          orig_non_tpu_caller->getParentOfType<func::FuncOp>();
      IRMapping ir_map;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				var instance_id = $.data(this, "jstree_instance_id"),
    					a = [],
    					b = settings ? $.extend({}, true, settings) : {},
    					c = $(this),
    					s = false,
    					t = [];
    				a = a.concat(args);
    				if(c.data("jstree")) { a.push(c.data("jstree")); }
    				b = a.length ? $.extend.apply(null, [true, b].concat(a)) : b;
    
    				// if an instance already exists, destroy it first
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
Back to top