Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 192 for newobject (0.25 sec)

  1. cmd/erasure-server-pool.go

    }
    
    // getPoolIdx returns the found previous object and its corresponding pool idx,
    // if none are found falls back to most available space pool, this function is
    // designed to be only used by PutObject, CopyObject (newObject creation) and NewMultipartUpload.
    func (z *erasureServerPools) getPoolIdx(ctx context.Context, bucket, object string, size int64) (idx int, err error) {
    	idx, err = z.getPoolIdxExistingWithOpts(ctx, bucket, object, ObjectOptions{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

                                    List<String> cleanTasks = toList(resultSet.getObject(7));
                                    List<String> args = toList(resultSet.getObject(3));
                                    List<String> gradleOpts = toList(resultSet.getObject(4));
                                    Boolean daemon = (Boolean) resultSet.getObject(5);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    		}
    		memclrNoHeapPointers(unsafe.Pointer(voff), n)
    	}
    }
    
    // implementation of new builtin
    // compiler (both frontend and SSA backend) knows the signature
    // of this function.
    func newobject(typ *_type) unsafe.Pointer {
    	return mallocgc(typ.Size_, typ, true)
    }
    
    // reflect_unsafe_New is meant for package reflect,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

                            performanceResults.setArgs(ResultsStoreHelper.toList(testExecutions.getObject(6)));
                            performanceResults.setGradleOpts(ResultsStoreHelper.toList(testExecutions.getObject(7)));
                            performanceResults.setDaemon((Boolean) testExecutions.getObject(8));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/WebApiUtil.java

        private WebApiUtil() {
        }
    
        public static void setObject(final String name, final Object value) {
            LaRequestUtil.getOptionalRequest().ifPresent(req -> req.setAttribute(name, value));
        }
    
        @SuppressWarnings("unchecked")
        public static <T> T getObject(final String name) {
            return LaRequestUtil.getOptionalRequest().map(req -> (T) req.getAttribute(name)).orElse(null);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

    "description": "ObjectSelector decides whether to run the validation based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewritegeneric.go

    	// cond: isSameCall(call.Aux, "runtime.newobject") && warnRule(fe.Debug_checknil(), v, "removed nil check")
    	// result: ptr
    	for {
    		ptr := v_0
    		if ptr.Op != OpSelectN || auxIntToInt64(ptr.AuxInt) != 0 {
    			break
    		}
    		call := ptr.Args[0]
    		if call.Op != OpStaticLECall || len(call.Args) != 2 || !(isSameCall(call.Aux, "runtime.newobject") && warnRule(fe.Debug_checknil(), v, "removed nil check")) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

    "description": "ObjectSelector decides whether to run the validation based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  9. platforms/software/security/src/main/java/org/gradle/security/internal/SecuritySupport.java

            Object nextObject = objectFactory.nextObject();
            if (nextObject instanceof PGPSignatureList) {
                return (PGPSignatureList) nextObject;
            } else if (nextObject instanceof PGPCompressedData) {
                return readSignatureList(((PGPCompressedData) nextObject).getDataStream(), locationHint);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    	select {
    	case res := <-w.ResultChan():
    		obj := res.Object
    		if co, ok := obj.(runtime.CacheableObject); ok {
    			res.Object = co.GetObject()
    		}
    		check(res)
    	case <-time.After(wait.ForeverTestTimeout):
    		t.Errorf("time out after waiting %v on ResultChan", wait.ForeverTestTimeout)
    	}
    }
    
    func testCheckStop(t *testing.T, w watch.Interface) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top