Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for wcap (0.29 sec)

  1. src/main/java/org/codelibs/core/io/CopyUtil.java

                }
                return copyInternal((FileInputStream) in, wrap(out));
            }
            if (out instanceof FileOutputStream) {
                return copyInternal(wrap(in), (FileOutputStream) out);
            }
            return copyInternal(wrap(in), wrap(out));
        }
    
        // ////////////////////////////////////////////////////////////////
        // from InputStream to Writer
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    	padding-bottom: 0.25em;
    	padding-left: 0.25em;
    	color: rgba(0, 0, 0, 0.6);
    	display: -ms-flexbox;
    	display: -webkit-flex;
    	display: flex;
    	-ms-flex-flow: row wrap;
    	-webkit-flex-flow: row wrap;
    	flex-flow: row wrap;
    }
    
    #header .details span:first-child {
    	margin-left: -0.125em;
    }
    
    #header .details span.email a {
    	color: var(--header-color);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

            }
            catch ( CIFSException e ) {
                throw SmbException.wrap(e);
            }
        }
    
    
        @Override
        public void delete () throws SmbException {
            try {
                delete(this.fileLocator.getUNCPath());
            }
            catch ( CIFSException e ) {
                throw SmbException.wrap(e);
            }
            close();
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  4. src/bufio/bufio_test.go

    		// Obtain a buffer to append to.
    		b := w.AvailableBuffer()
    		if w.Available() != cap(b) {
    			t.Fatalf("Available() = %v, want %v", w.Available(), cap(b))
    		}
    
    		// While not recommended, it is valid to append to a shifted buffer.
    		// This forces Write to copy the input.
    		if rn.Intn(8) == 0 && cap(b) > 0 {
    			b = b[1:1:cap(b)]
    		}
    
    		// Append a random integer of varying width.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    		addr *uint16
    		len  int
    		cap  int
    	}{(*uint16)(unsafe.Pointer(&buf[0])), len(buf) / 2, cap(buf) / 2}
    	return *(*[]uint16)(unsafe.Pointer(&sl))
    }
    
    // utf16ToBuf function reinterprets []uint16 as []byte
    func utf16ToBuf(buf []uint16) []byte {
    	sl := struct {
    		addr *byte
    		len  int
    		cap  int
    	}{(*byte)(unsafe.Pointer(&buf[0])), len(buf) * 2, cap(buf) * 2}
    	return *(*[]byte)(unsafe.Pointer(&sl))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    	if cap(state.valueNames) < f.NumValues() {
    		old := state.valueNames
    		state.valueNames = make([][]SlotID, f.NumValues())
    		copy(state.valueNames, old)
    	}
    	vn := state.valueNames[:f.NumValues()]
    	for i := range vn {
    		vn[i] = vn[i][:0]
    	}
    
    	// Slot and register contents for currentState. Cleared by reset().
    	if cap(state.currentState.slots) < numSlots {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/rbac/v1beta1/generated.pb.go

    }
    func (m *AggregationRule) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *AggregationRule) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    	n, err := m.MarshalToSizedBuffer(b)
    	if err != nil {
    		return nil, err
    	}
    	return b[:n], nil
    }
    func (m *AggregationRule) XXX_Merge(src proto.Message) {
    	xxx_messageInfo_AggregationRule.Merge(m, src)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1alpha1/generated.pb.go

    }
    func (m *AggregationRule) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *AggregationRule) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    	n, err := m.MarshalToSizedBuffer(b)
    	if err != nil {
    		return nil, err
    	}
    	return b[:n], nil
    }
    func (m *AggregationRule) XXX_Merge(src proto.Message) {
    	xxx_messageInfo_AggregationRule.Merge(m, src)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	svc = sds.GetService(missing)
    	if svc != nil {
    		t.Fatalf("GetService(%q) => %s, should not exist", missing, svc.Hostname)
    	}
    }
    
    func makeService(n, ns string, cl *FakeController, t *testing.T) {
    	clienttest.Wrap(t, cl.services).Create(&corev1.Service{
    		ObjectMeta: metav1.ObjectMeta{Name: n, Namespace: ns},
    		Spec: corev1.ServiceSpec{
    			Ports: []corev1.ServicePort{
    				{
    					Port:     80,
    					Name:     "http-example",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1alpha1/generated.pb.go

    }
    func (m *CSIStorageCapacity) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *CSIStorageCapacity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    	n, err := m.MarshalToSizedBuffer(b)
    	if err != nil {
    		return nil, err
    	}
    	return b[:n], nil
    }
    func (m *CSIStorageCapacity) XXX_Merge(src proto.Message) {
    	xxx_messageInfo_CSIStorageCapacity.Merge(m, src)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 76.5K bytes
    - Viewed (0)
Back to top