Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 100 for target01 (0.19 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    // invalidating the schedule.
    func canMergeLoad(target, load *Value) bool {
    	if target.Block.ID != load.Block.ID {
    		// If the load is in a different block do not merge it.
    		return false
    	}
    
    	// We can't merge the load into the target if the load
    	// has more than one use.
    	if load.Uses != 1 {
    		return false
    	}
    
    	mem := load.MemoryArg()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    }
    
    //sys	mount(source string, target string, fstype string, flags uintptr, data *byte) (err error)
    
    func Mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
    	// Certain file systems get rather angry and EINVAL if you give
    	// them an empty string of data, rather than NULL.
    	if data == "" {
    		return mount(source, target, fstype, flags, nil)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. pkg/generated/openapi/zz_generated.openapi.go

    						SchemaProps: spec.SchemaProps{
    							Description: "metric identifies the target metric by name and selector",
    							Default:     map[string]interface{}{},
    							Ref:         ref("k8s.io/api/autoscaling/v2.MetricIdentifier"),
    						},
    					},
    					"target": {
    						SchemaProps: spec.SchemaProps{
    							Description: "target specifies the target value for the given metric",
    							Default:     map[string]interface{}{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    When using <<scala_plugin.adoc#sec:scala_tasks,toolchains in Scala>>, the `-target` option of the Scala compiler will now be set automatically.
    This means that using a version of Java that cannot be targeted by a version of Scala will result in an error.
    Providing this flag in the compiler options will disable this behaviour and allow to use a higher Java version to compile for a lower bytecode target.
    
    [[declare_unreadable_input_output]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__apps__v1_openapi.json

              },
              "readyReplicas": {
                "description": "readyReplicas is the number of pods targeted by this Deployment with a Ready Condition.",
                "format": "int32",
                "type": "integer"
              },
              "replicas": {
                "description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector).",
                "format": "int32",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  6. cmd/bucket-replication.go

    	errs := make([]error, len(proxyTargets.Targets))
    	tagSlc := make([]map[string]string, len(proxyTargets.Targets))
    	for idx, t := range proxyTargets.Targets {
    		tgt := globalBucketTargetSys.GetRemoteTargetClient(bucket, t.Arn)
    		if tgt == nil || globalBucketTargetSys.isOffline(tgt.EndpointURL()) {
    			continue
    		}
    		// if proxying explicitly disabled on remote target
    		if tgt.disableProxy {
    			continue
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    		table := make([]*ssa.Block, max-min+1)
    		for i := range table {
    			table[i] = bEnd // default target
    		}
    		for i := range n.Targets {
    			c := n.Cases[i]
    			lab := s.label(n.Targets[i])
    			if lab.target == nil {
    				lab.target = s.f.NewBlock(ssa.BlockPlain)
    			}
    			var val uint64
    			if unsigned {
    				val, _ = constant.Uint64Val(c)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.8.md

    	determined at a per-pod level, with pods being isolated if there is
    	any NetworkPolicy whose spec.podSelector targets them. Pods that are
    	targeted by NetworkPolicies accept traffic that is accepted by any of
    	the NetworkPolicies (and nothing else), and pods that are not targeted
    	by any NetworkPolicy accept all traffic by default.
    	Action Required:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-65213`](https://youtrack.jetbrains.com/issue/KT-65213) Collect logic for FUS metrics calculation in one place
    - [`KT-61698`](https://youtrack.jetbrains.com/issue/KT-61698) Compiler options configured inside metadata {} target set up all targets in a project
    - [`KT-64824`](https://youtrack.jetbrains.com/issue/KT-64824) Move validateParameters from CInteropProcess to diagnostics
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  10. prow/config/calico.yaml

                      the BIRD default of 120s is used.
                    type: string
                  node:
                    description: The node name identifying the Calico node instance that
                      is targeted by this peer. If this is not set, and no nodeSelector
                      is specified, then this BGP peer selects all nodes in the cluster.
                    type: string
                  nodeSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
Back to top