Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 235 for createId (0.46 sec)

  1. pkg/proxy/nftables/proxier.go

    			}
    		}
    
    		// If Cluster policy is in use, create the chain and create rules jumping
    		// from clusterPolicyChain to the clusterEndpoints
    		if usesClusterPolicyChain {
    			proxier.writeServiceToEndpointRules(tx, svcPortNameString, svcInfo, clusterPolicyChain, clusterEndpoints)
    		}
    
    		// If Local policy is in use, create rules jumping from localPolicyChain
    		// to the localEndpoints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. cmd/bucket-handlers.go

    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    		for _, dnsRecords := range dnsBuckets {
    			bucketsInfo = append(bucketsInfo, BucketInfo{
    				Name:    dnsRecords[0].Key,
    				Created: dnsRecords[0].CreationDate,
    			})
    		}
    
    		sort.Slice(bucketsInfo, func(i, j int) bool {
    			return bucketsInfo[i].Name < bucketsInfo[j].Name
    		})
    
    	} else {
    		// Invoke the list buckets.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  3. src/syscall/syscall_windows.go

    // Only a limited number of callbacks may be created in a single Go process, and any memory allocated
    // for these callbacks is never released.
    // Between NewCallback and NewCallbackCDecl, at least 1024 callbacks can always be created.
    func NewCallback(fn any) uintptr {
    	return compileCallback(fn, true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Sets.java

       *
       * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Instead,
       * use the {@code HashSet} constructor directly, taking advantage of <a
       * href="http://goo.gl/iz2Wi">"diamond" syntax</a>.
       */
      public static <E extends @Nullable Object> HashSet<E> newHashSet() {
        return new HashSet<>();
      }
    
      /**
       * Creates a <i>mutable</i> {@code HashSet} instance initially containing the given elements.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  5. cmd/object-api-multipart_test.go

    	object := "minio-object"
    	opts := ObjectOptions{}
    	// Create bucket before initiating NewMultipartUpload.
    	err := obj.MakeBucket(context.Background(), bucket, MakeBucketOptions{})
    	if err != nil {
    		// Failed to create newbucket, abort.
    		t.Fatalf("%s : %s", instanceType, err.Error())
    	}
    	// Initiate Multipart Upload on the above created bucket.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    		if err := sh.Mkdir(gcd); err != nil {
    			// If we can't create a temp dir, terminate immediately
    			// with an error as opposed to returning an error to the
    			// caller; failed MkDir most likely indicates that we're
    			// out of disk space or there is some other systemic error
    			// that will make forward progress unlikely.
    			base.Fatalf("failed to create temporary dir: %v", err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ppc64/asm.go

    func trampoline(ctxt *ld.Link, ldr *loader.Loader, ri int, rs, s loader.Sym) {
    
    	// Trampolines are created if the branch offset is too large and the linker cannot insert a call stub to handle it.
    	// For internal linking, trampolines are always created for long calls.
    	// For external linking, the linker can insert a call stub to handle a long call, but depends on having the TOC address in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    }
    
    func printcreatedby(gp *g) {
    	// Show what created goroutine, except main goroutine (goid 1).
    	pc := gp.gopc
    	f := findfunc(pc)
    	if f.valid() && showframe(f.srcFunc(), gp, false, abi.FuncIDNormal) && gp.goid != 1 {
    		printcreatedby1(f, pc, gp.parentGoid)
    	}
    }
    
    func printcreatedby1(f funcInfo, pc uintptr, goid uint64) {
    	print("created by ")
    	printFuncName(funcname(f))
    	if goid != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        0,                  // 0 seconds.
        n * 1000L * 1000L,  // And n ms.
      };
      nanosleep(&time, NULL);
    }
    
    // Allows a controller thread to pause execution of newly created
    // threads until notified.  Instances of this class must be created
    // and destroyed in the controller thread.
    //
    // This class is only for testing Google Test's own constructs. Do not
    // use it in user tests, either directly or indirectly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. cmd/batch-handlers.go

    		if !r.Flags.Filter.CreatedAfter.IsZero() && r.Flags.Filter.CreatedAfter.Before(oi.ModTime) {
    			// skip all objects that are created before the specified time.
    			return true
    		}
    
    		if !r.Flags.Filter.CreatedBefore.IsZero() && r.Flags.Filter.CreatedBefore.After(oi.ModTime) {
    			// skip all objects that are created after the specified time.
    			return true
    		}
    
    		if hasTags {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
Back to top