Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 460 for FILL (0.07 sec)

  1. src/cmd/compile/internal/ssa/html.go

                el.attributes.stroke.value = 'white';
            }
            if (el.attributes.fill.value === 'white') {
                el.attributes.fill.value = 'black';
            } else if (el.attributes.fill.value === 'black') {
                el.attributes.fill.value = 'white';
            }
        });
    }
    
    </script>
    
    </head>`)
    	w.WriteString("<body>")
    	w.WriteString("<h1>")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  2. pkg/controlplane/controller/crdregistration/crdregistration_controller_test.go

    				{
    					Spec: apiextensionsv1.CustomResourceDefinitionSpec{
    						Group: "group.com",
    						// Version field is deprecated and crd registration won't rely on it at all.
    						// defaulting route will fill up Versions field if user only provided version field.
    						Versions: []apiextensionsv1.CustomResourceDefinitionVersion{
    							{
    								Name:    "v1",
    								Served:  true,
    								Storage: true,
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 02 17:48:26 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  3. internal/bpool/bpool_test.go

    		t.Fatalf("bytepool length invalid: got %v want %v", len(b), width)
    	}
    	if cap(b) != capWidth {
    		t.Fatalf("bytepool cap invalid: got %v want %v", cap(b), capWidth)
    	}
    
    	bufPool.Put(b)
    
    	// Fill the pool beyond the capped pool size.
    	for i := uint64(0); i < size*2; i++ {
    		bufPool.Put(make([]byte, bufPool.w))
    	}
    
    	b = bufPool.Get()
    	if len(b) != width {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 19:13:27 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.golden_summary

     All 1
     ApplyAdam 38
     Assert 7
     Assign 47
     AssignAdd 2
     AssignSub 2
     BroadcastGradientArgs 44
     Cast 38
     ConcatV2 3
     Const 875
     ControlTrigger 5
     Enter 874
     Equal 4
     Exit 69
     ExpandDims 9
     Fill 5
     FloorMod 1
     GreaterEqual 7
     Identity 113
     IsVariableInitialized 1
     IteratorGetNext 1
     IteratorV2 1
     Less 9
     LogicalAnd 3
     LoopCond 8
     Max 4
     Maximum 44
     Merge 145
     Minimum 43
     Mul 8
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. src/crypto/aes/ctr_s390x.go

    	var ac aesctr
    	ac.block = c
    	ac.ctr[0] = byteorder.BeUint64(iv[0:]) // high bits
    	ac.ctr[1] = byteorder.BeUint64(iv[8:]) // low bits
    	ac.buffer = ac.storage[:0]
    	return &ac
    }
    
    func (c *aesctr) refill() {
    	// Fill up the buffer with an incrementing count.
    	c.buffer = c.storage[:streamBufferSize]
    	c0, c1 := c.ctr[0], c.ctr[1]
    	for i := 0; i < streamBufferSize; i += 16 {
    		byteorder.BePutUint64(c.buffer[i+0:], c0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/namer.go

    		return "", "", errEmptyName
    	}
    	namespace, err = n.Namer.Namespace(obj)
    	if err != nil {
    		return "", "", err
    	}
    	return namespace, name, err
    }
    
    // errEmptyName is returned when API requests do not fill the name section of the path.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 14 10:11:56 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/trampoline_reuse_test.txt

    #define NOP2S20 NOP2S18 NOP2S18 NOP2S18 NOP2S18
    #define NOP2S22 NOP2S20 NOP2S20 NOP2S20 NOP2S20
    #define NOP2S24 NOP2S22 NOP2S22 NOP2S22 NOP2S22
    #define BIGNOP NOP2S24 NOP2S24
    TEXT main·BigAsm(SB),0,$0-0
            // Fill to the direct call limit so Func2 must generate a new trampoline.
            // As the implicit trampoline above is just barely unreachable.
            BIGNOP
            MOVD $main·Func2(SB), R3
    
    TEXT main·Func2(SB),0,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 14:31:23 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. src/time/zoneinfo_plan9.go

    		if err != nil {
    			return nil, errBadData
    		}
    		t -= zones[0].offset
    		tx = append(tx, zoneTrans{when: int64(t), index: uint8(zi)})
    	}
    
    	// Committed to succeed.
    	l = &Location{zone: zones[:], tx: tx}
    
    	// Fill in the cache with information about right now,
    	// since that will be the most common lookup.
    	sec, _, _ := now()
    	for i := range tx {
    		if tx[i].when <= sec && (i+1 == len(tx) || sec < tx[i+1].when) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 16 23:09:19 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ir/mini.go

    //	func (n *MyNode) String() string { return fmt.Sprint(n) }
    //	func (n *MyNode) rawCopy() Node { c := *n; return &c }
    //	func (n *MyNode) Format(s fmt.State, verb rune) { FmtNode(n, s, verb) }
    //
    // The embedding struct should also fill in n.op in its constructor,
    // for more useful panic messages when invalid methods are called,
    // instead of implementing Op itself.
    type miniNode struct {
    	pos  src.XPos // uint32
    	op   Op       // uint8
    	bits bitset8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 31 22:09:44 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/hkdf/hkdf.go

    	remains := len(f.buf) + int(255-f.counter+1)*f.size
    	if remains < need {
    		return 0, errors.New("hkdf: entropy limit reached")
    	}
    	// Read any leftover from the buffer
    	n := copy(p, f.buf)
    	p = p[n:]
    
    	// Fill the rest of the buffer
    	for len(p) > 0 {
    		if f.counter > 1 {
    			f.expander.Reset()
    		}
    		f.expander.Write(f.prev)
    		f.expander.Write(f.info)
    		f.expander.Write([]byte{f.counter})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top