Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 283 for makeID (0.15 sec)

  1. cmd/test-utils_test.go

    	return obj, fsDirs, nil
    }
    
    func prepareErasure16(ctx context.Context) (ObjectLayer, []string, error) {
    	return prepareErasure(ctx, 16)
    }
    
    // TestErrHandler - Go testing.T satisfy this interface.
    // This makes it easy to run the TestServer from any of the tests.
    // Using this interface, functionalities to be used in tests can be
    // made generalized, and can be integrated in benchmarks/unit tests/go check suite tests.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/prove.go

    	ft := &factsTable{}
    	ft.orderS = f.newPoset()
    	ft.orderU = f.newPoset()
    	ft.orderS.SetUnsigned(false)
    	ft.orderU.SetUnsigned(true)
    	ft.facts = make(map[pair]relation)
    	ft.stack = make([]fact, 4)
    	ft.limits = make(map[ID]limit)
    	ft.limitStack = make([]limitFact, 4)
    	ft.zero = f.ConstInt64(f.Config.Types.Int64, 0)
    	return ft
    }
    
    // update updates the set of relations between v and w in domain d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/discovery/v1beta1/generated.pb.go

    	0xff, 0x1c, 0xe6, 0x20, 0x06, 0xcf, 0x07, 0x00, 0x00,
    }
    
    func (m *Endpoint) Marshal() (dAtA []byte, err error) {
    	size := m.Size()
    	dAtA = make([]byte, size)
    	n, err := m.MarshalToSizedBuffer(dAtA[:size])
    	if err != nil {
    		return nil, err
    	}
    	return dAtA[:n], nil
    }
    
    func (m *Endpoint) MarshalTo(dAtA []byte) (int, error) {
    	size := m.Size()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    // It kicks off the background sweeper goroutine, the background
    // scavenger goroutine, and enables GC.
    func gcenable() {
    	// Kick off sweeping and scavenging.
    	c := make(chan int, 2)
    	go bgsweep(c)
    	go bgscavenge(c)
    	<-c
    	<-c
    	memstats.enablegc = true // now that runtime is initialized, GC is okay
    }
    
    // Garbage collector phase.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/certificates/v1beta1/generated.pb.go

    	0xe8, 0xdd, 0x08, 0x00, 0x00,
    }
    
    func (m *CertificateSigningRequest) Marshal() (dAtA []byte, err error) {
    	size := m.Size()
    	dAtA = make([]byte, size)
    	n, err := m.MarshalToSizedBuffer(dAtA[:size])
    	if err != nil {
    		return nil, err
    	}
    	return dAtA[:n], nil
    }
    
    func (m *CertificateSigningRequest) MarshalTo(dAtA []byte) (int, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/certificates/v1/generated.pb.go

    	0xff, 0x2f, 0xf9, 0x2f, 0x00, 0x00, 0xff, 0xff, 0xd9, 0x4a, 0x4f, 0xbc, 0xb4, 0x08, 0x00, 0x00,
    }
    
    func (m *CertificateSigningRequest) Marshal() (dAtA []byte, err error) {
    	size := m.Size()
    	dAtA = make([]byte, size)
    	n, err := m.MarshalToSizedBuffer(dAtA[:size])
    	if err != nil {
    		return nil, err
    	}
    	return dAtA[:n], nil
    }
    
    func (m *CertificateSigningRequest) MarshalTo(dAtA []byte) (int, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/CacheBuilder.java

       * WeakReference} (by default, strong references are used).
       *
       * <p>Weak values will be garbage collected once they are weakly reachable. This makes them a poor
       * candidate for caching; consider {@link #softValues} instead.
       *
       * <p><b>Note:</b> when this method is used, the resulting cache will use identity ({@code ==})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        defined(__IBMCPP__) || defined(__HP_aCC)
    # define GTEST_HAS_TYPED_TEST 1
    # define GTEST_HAS_TYPED_TEST_P 1
    #endif
    
    // Determines whether to support Combine(). This only makes sense when
    // value-parameterized tests are enabled.  The implementation doesn't
    // work on Sun Studio since it doesn't understand templated conversion
    // operators.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    // linux/arm64, and freebsd/amd64, the traceback function is also invoked
    // when a signal is received by a thread that is executing a cgo call.
    // The traceback function should not make assumptions about when it is
    // called, as future versions of Go may make additional calls.
    //
    // The symbolizer function will be called with a single argument, a
    // pointer to a struct:
    //
    //	struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        defined(__IBMCPP__) || defined(__HP_aCC)
    # define GTEST_HAS_TYPED_TEST 1
    # define GTEST_HAS_TYPED_TEST_P 1
    #endif
    
    // Determines whether to support Combine(). This only makes sense when
    // value-parameterized tests are enabled.  The implementation doesn't
    // work on Sun Studio since it doesn't understand templated conversion
    // operators.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top