Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for cherries (0.32 sec)

  1. pkg/model/proxy.go

    	// WorkloadName specifies the name of the workload represented by this node.
    	WorkloadName string `json:"WORKLOAD_NAME,omitempty"`
    
    	// InterceptionMode is the name of the metadata variable that carries info about
    	// traffic interception mode at the proxy
    	InterceptionMode TrafficInterceptionMode `json:"INTERCEPTION_MODE,omitempty"`
    
    	// ServiceAccount specifies the service account which is running the workload.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. pkg/scheduler/eventhandlers.go

    	}
    }
    
    func (sched *Scheduler) updatePodInSchedulingQueue(oldObj, newObj interface{}) {
    	logger := sched.logger
    	oldPod, newPod := oldObj.(*v1.Pod), newObj.(*v1.Pod)
    	// Bypass update event that carries identical objects; otherwise, a duplicated
    	// Pod may go through scheduling and cause unexpected behavior (see #96071).
    	if oldPod.ResourceVersion == newPod.ResourceVersion {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. README.md

    ### Upgrade Checklist
    
    - Test all upgrades in a lower environment (DEV, QA, UAT) before applying to production. Performing blind upgrades in production environments carries significant risk.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. pkg/bootstrap/config.go

    			}
    		}
    	}
    
    	// Support passing extra info from node environment as metadata
    	opts = append(opts, getNodeMetadataOptions(cfg.Node, cfg.CompliancePolicy)...)
    
    	// Check if nodeIP carries IPv4 or IPv6 and set up proxy accordingly
    	if network.AllIPv4(cfg.Metadata.InstanceIPs) {
    		// IPv4 only
    		opts = append(opts,
    			option.Localhost(option.LocalhostIPv4),
    			option.Wildcard(option.WildcardIPv4),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    To fix this, you can declare a `Property` as an input instead:
    
    ```
    someTask {
        inputFile.from(jar.archiveFile)
    }
    ```
    
    The `jar.archiveFile` property is of type `Provider<RegularFile>` which properly carries task dependencies: Gradle will be able to know that the file is generated by the `jar` task.
    
    It's actually even easier to add an implicit dependency to the task itself:
    
    ```
    someTask {
        inputFile.from(jar)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. src/net/http/httputil/reverseproxy.go

    	}
    
    	ctx := req.Context()
    	if ctx.Done() != nil {
    		// CloseNotifier predates context.Context, and has been
    		// entirely superseded by it. If the request contains
    		// a Context that carries a cancellation signal, don't
    		// bother spinning up a goroutine to watch the CloseNotify
    		// channel (if any).
    		//
    		// If the request Context has a nil Done channel (which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. src/image/draw/draw_test.go

    	// 'blended') and both dst and src images are *image.NRGBA (N stands for
    	// Non-premultiplied alpha which *does* distinguish "transparent blue" and
    	// "transparent red"), we prefer that this distinction carries through and
    	// dst's touched pixels should be transparent blue and transparent green,
    	// not just transparent black.
    	{
    		dst := image.NewNRGBA(image.Rect(0, 10, 3, 11))
    		dst.SetNRGBA(0, 10, opaqueGray)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. src/crypto/internal/bigmod/nat.go

    			// Step 2 (T mod 2^_W) is simply T[i]. k0 in Step 3 is our m0inv.
    			Y := T[i] * m.m0inv
    
    			// Step 4 and 5 add Y × m to T, which as mentioned above is stored
    			// at T[i:]. The two carries (from a × d and Y × m) are added up in
    			// the next word T[n+i], and the carry bit from that addition is
    			// brought forward to the next iteration.
    			c2 := addMulVVW(T[i:n+i], mLimbs, Y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. cmd/erasure-multipart.go

    //
    // Internally this function creates 'uploads.json' associated for the
    // incoming object at
    // '.minio.sys/multipart/bucket/object/uploads.json' on all the
    // disks. `uploads.json` carries metadata regarding on-going multipart
    // operation(s) on the object.
    func (er erasureObjects) newMultipartUpload(ctx context.Context, bucket string, object string, opts ObjectOptions) (*NewMultipartUploadResult, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. cmd/testdata/xl-meta-merge.zip

    `chmod +x /opt/bin/minio` and process to perform `mc admin service restart alias/`. ### Upgrade Checklist - Test all upgrades in a lower environment (DEV, QA, UAT) before applying to production. Performing blind upgrades in production environments carries significant risk. - Read the release notes for MinIO *before* performing any upgrade, there is no forced requirement to upgrade to latest release upon every release. Some release may not be relevant to your setup, avoid upgrading production environments...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top