Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 129 for mage (0.12 sec)

  1. platforms/documentation/docs/src/docs/release/notes-template.md

    -->
    
    ## Fixed issues
    
    <!--
    This section will be populated automatically
    -->
    
    ## Known issues
    
    Known issues are problems that were discovered post-release that are directly related to changes made in this release.
    
    <!--
    This section will be populated automatically
    -->
    
    ## External contributions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster.go

    	// Holds clusters per service, keyed by hostname.
    	serviceClusters := make(map[string]sets.String)
    	// Holds service ports, keyed by hostname.Inner map port and its cluster name.
    	// This is mainly used when service is updated and a port has been removed.
    	servicePortClusters := make(map[string]map[int]string)
    	// Holds subset clusters per service, keyed by hostname.
    	subsetClusters := make(map[string]sets.String)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - A new kubelet metric `image_pull_duration_seconds` was added. The metric tracks the duration (in seconds) it takes for an image to be pulled, including the time spent in the waiting queue of image puller. The metric is broken down by bucketed image size. ([#121719](https://github.com/kubernetes/kubernetes/pull/121719), [@ruiwen-zhao](https://github.com/ruiwen-zhao))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/unify.go

    		}
    		return false
    	}
    
    	// Unification is symmetric, so we can swap the operands.
    	// Ensure that if we have at least one
    	// - defined type, make sure one is in y
    	// - type parameter recorded with u, make sure one is in x
    	if asNamed(x) != nil || u.asBoundTypeParam(y) != nil {
    		if traceInference {
    			u.tracef("%s ≡ %s\t// swap", y, x)
    		}
    		x, y = y, x
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. manifests/charts/gateway/values.yaml

      tolerations: []
    
      topologySpreadConstraints: []
    
      affinity: {}
    
      # If specified, the gateway will act as a network gateway for the given network.
      networkGateway: ""
    
      # Specify image pull policy if default behavior isn't desired.
      # Default behavior: latest images will be Always else IfNotPresent
      imagePullPolicy: ""
    
      imagePullSecrets: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ResolveState.java

        }
    
        public NodeState pop() {
            NodeState next = queue.removeFirst();
            return next.dequeue();
        }
    
        /**
         * Called when a change is made to a configuration node, such that its dependency graph may now be larger than it previously was, and the node should be visited.
         */
        public void onMoreSelected(NodeState node) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. Makefile

    docker-hotfix: hotfix-push checks ## builds minio docker container with hotfix tags
    	@echo "Building minio docker image '$(TAG)'"
    	@docker build -q --no-cache -t $(TAG) --build-arg RELEASE=$(VERSION) . -f Dockerfile.hotfix
    
    docker: build ## builds minio docker container
    	@echo "Building minio docker image '$(TAG)'"
    	@docker build -q --no-cache -t $(TAG) . -f Dockerfile
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. src/time/tick_test.go

    	}
    
    	tim.Stop()
    	drainAsync()
    	noTick()
    
    	// Again using select and with two goroutines waiting.
    	tim.Reset(10000 * Second)
    	drainAsync()
    	done = make(chan bool, 2)
    	done1 := make(chan bool)
    	done2 := make(chan bool)
    	stop := make(chan bool)
    	go func() {
    		select {
    		case <-C:
    			done <- true
    		case <-stop:
    		}
    		close(done1)
    	}()
    	go func() {
    		select {
    		case <-C:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. callbacks/query.go

    				clauseSelect.Columns = make([]clause.Column, len(db.Statement.Schema.DBNames))
    				for idx, dbName := range db.Statement.Schema.DBNames {
    					clauseSelect.Columns[idx] = clause.Column{Table: db.Statement.Table, Name: dbName}
    				}
    			}
    
    			specifiedRelationsName := make(map[string]interface{})
    			for _, join := range db.Statement.Joins {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:51:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	// stub the image GC manager
    	if kl.kubeletConfiguration.ImageGCHighThresholdPercent == 100 &&
    		(!utilfeature.DefaultFeatureGate.Enabled(features.ImageMaximumGCAge) || kl.kubeletConfiguration.ImageMaximumGCAge.Duration == 0) {
    		klog.V(2).InfoS("ImageGCHighThresholdPercent is set 100 and ImageMaximumGCAge is 0, Disable image GC")
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top