Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 93 for newobject (0.52 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/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)
  6. cmd/global-heal.go

    		// If we resume to the same bucket, forward to last known item.
    		b := tracker.getBucket()
    		if b == bucket {
    			forwardTo = tracker.getObject()
    		}
    		if b != "" {
    			// Reset to where last bucket ended if resuming.
    			tracker.resume()
    		}
    		tracker.setObject("")
    		tracker.setBucket(bucket)
    		// Heal current bucket again in case if it is failed
    		// in the beginning of erasure set healing
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerialization.java

                } else {
                    out.name("subtype").value("file");
                }
                out.endObject();
            }
    
            @Override
            public FileLocation read(JsonReader in) throws IOException {
                in.beginObject();
                FileLocation fileLocation = readObject(in);
                in.endObject();
    
                Objects.requireNonNull(fileLocation, "path must not be null");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_pod_control_test.go

    		create := action.(core.CreateAction)
    		claimIndexer.Add(create.GetObject())
    		return true, create.GetObject(), nil
    	})
    	fakeClient.AddReactor("create", "pods", func(action core.Action) (bool, runtime.Object, error) {
    		create := action.(core.CreateAction)
    		return true, create.GetObject(), nil
    	})
    	if err := control.CreateStatefulPod(context.TODO(), set, pod); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    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: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  10. cmd/object-api-interface.go

    }
    
    // GetObject - TODO(aead): This function just acts as an adapter for GetObject tests and benchmarks
    // since the GetObject method of the ObjectLayer interface has been removed. Once, the
    // tests are adjusted to use GetObjectNInfo this function can be removed.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top