Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for below (0.06 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    	q := NewTestQueue(ctx, newDefaultQueueSort(), WithClock(c), WithQueueingHintMapPerProfile(m))
    	// To simulate the pod is failed in scheduling in the real world, Pop() the pod from activeQ before AddUnschedulableIfNotPresent()s below.
    	q.activeQ.Add(q.newQueuedPodInfo(unschedulablePodInfo.Pod))
    	if p, err := q.Pop(logger); err != nil || p.Pod != unschedulablePodInfo.Pod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //	go doc [<pkg>.]<sym>[.<methodOrField>]
    //	go doc [<pkg>.][<sym>.]<methodOrField>
    //
    // The first item in this list matched by the argument is the one whose documentation
    // is printed. (See the examples below.) However, if the argument starts with a capital
    // letter it is assumed to identify a symbol or method in the current directory.
    //
    // For packages, the order of scanning is determined lexically in breadth-first order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    //	     13c: e8 00 00 00 00               	callq	0x141 <pow+0x141>
    //			000000000000013d:  IMAGE_REL_AMD64_REL32	_errno
    //
    // The assembly below dispenses with the import symbol and just makes
    // a direct call to _errno.
    //
    // The code below handles indirect refs by redirecting the target of
    // the relocation from "__imp_XYZ" to "XYZ" (since the latter symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    		}
    	}
    
    	// Load cached vet config, but only if that's all we have left
    	// (need == needVet, not testing just the one bit).
    	// If we are going to do a full build anyway,
    	// we're going to regenerate the files below anyway.
    	if need == needVet {
    		if err := b.loadCachedVet(a); err == nil {
    			need &^= needVet
    		}
    	}
    	if need == 0 {
    		return nil
    	}
    
    	if err := AllowInstall(a); err != nil {
    		return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    // If the tool is not installed, or there are no IDs configured, the default mapping is returned.
    // The default mapping includes the entire IDs range except IDs below 65536.
    func (kl *Kubelet) getKubeletMappings() (uint32, uint32, error) {
    	// default mappings to return if there is no specific configuration
    	const defaultFirstID = 1 << 16
    	const defaultLen = 1<<32 - defaultFirstID
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. cmd/object-handlers.go

    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrEntityTooLarge), r.URL)
    		return
    	}
    
    	// We have to copy metadata only if source and destination are same.
    	// this changes for encryption which can be observed below.
    	if cpSrcDstSame {
    		srcInfo.metadataOnly = true
    	}
    
    	var chStorageClass bool
    	if dstSc != "" && dstSc != srcInfo.StorageClass {
    		chStorageClass = true
    		srcInfo.metadataOnly = false
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // Worklist to direct partial evaluation.
      SmallVector<ValuePort, 4> worklist;
    
      // Simple evaluator that attempts to partially evaluate the input value even
      // if unable to evaluate the complete output. Below follows a simple stack
      // based evaluation where it queries what operands/part of operands need to
      // be evaluated and attempting to partially evaluate those operands. It does
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	}
    
    	// trigger on-demand stats collection once so that we have capacity information for ephemeral storage.
    	// ignore any errors, since if stats collection is not successful, the container manager will fail to start below.
    	kl.StatsProvider.GetCgroupStats("/", true)
    	// Start container manager.
    	node, err := kl.getNodeAnyWay()
    	if err != nil {
    		// Fail kubelet and rely on the babysitter to retry starting kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

        exit 2
      fi
    }
    
    # Runs the easy RSA commands to generate certificate files.
    # The generated files are IN ${CERT_DIR}
    #
    # Assumed vars (see shellcheck disable directives below)
    #   KUBE_TEMP
    #   MASTER_NAME
    #   CERT_DIR
    #   PRIMARY_CN: Primary canonical name
    #   SANS: Subject alternate names
    #
    #
    function generate-certs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. cmd/object-handlers_test.go

    		0, bytes.NewReader([]byte("testNilObjLayer")), "", "", nil)
    	if err != nil {
    		t.Errorf("MinIO %s: Failed to create http request for testing the response when object Layer is set to `nil`.", instanceType)
    	}
    
    	// Below is how CopyObjectPartHandler is registered.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top