Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 214 for target01 (0.16 sec)

  1. src/cmd/link/internal/riscv64/asm.go

    	sb.SetReachable(true)
    	sb.SetVisibilityHidden(true)
    	plt.AddInteriorSym(sb.Sym())
    
    	plt.AddSymRef(target.Arch, sb.Sym(), 0, objabi.R_RISCV_PCREL_LO12_I, 4)
    	plt.SetUint32(target.Arch, plt.Size()-4, 0x000e3e03) // ld      t3,0(t3)
    	plt.AddUint32(target.Arch, 0x000e0367)               // jalr    t1,t3
    	plt.AddUint32(target.Arch, 0x00000001)               // nop
    
    	ldr.SetPlt(s, int32(plt.Size()-16))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. pkg/apis/autoscaling/types.go

    	Metric MetricIdentifier
    	// target specifies the target value for the given metric
    	Target MetricTarget
    }
    
    // ResourceMetricSource indicates how to scale on a resource metric known to
    // Kubernetes, as specified in requests and limits, describing each pod in the
    // current scale target (e.g. CPU or memory).  The values will be averaged
    // together before being compared to the target.  Such metrics are built in to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  3. src/internal/bisect/bisect.go

    // license that can be found in the LICENSE file.
    
    // Package bisect can be used by compilers and other programs
    // to serve as a target for the bisect debugging tool.
    // See [golang.org/x/tools/cmd/bisect] for details about using the tool.
    //
    // To be a bisect target, allowing bisect to help determine which of a set of independent
    // changes provokes a failure, a program needs to:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    			},
    		},
    		{
    			"PID Namespace TARGET",
    			&v1.Pod{
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{Name: "test"},
    					},
    				},
    			},
    			&kubecontainer.ContainerID{Type: "docker", ID: "really-long-id-string"},
    			&runtimeapi.NamespaceOption{
    				Pid:      runtimeapi.NamespaceMode_TARGET,
    				TargetId: "really-long-id-string",
    			},
    		},
    	} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v2beta2/types.go

    type ObjectMetricSource struct {
    	DescribedObject CrossVersionObjectReference `json:"describedObject" protobuf:"bytes,1,name=describedObject"`
    	// target specifies the target value for the given metric
    	Target MetricTarget `json:"target" protobuf:"bytes,2,name=target"`
    
    	// metric identifies the target metric by name and selector
    	Metric MetricIdentifier `json:"metric" protobuf:"bytes,3,name=metric"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v2/types.go

    	DescribedObject CrossVersionObjectReference `json:"describedObject" protobuf:"bytes,1,name=describedObject"`
    
    	// target specifies the target value for the given metric
    	Target MetricTarget `json:"target" protobuf:"bytes,2,name=target"`
    
    	// metric identifies the target metric by name and selector
    	Metric MetricIdentifier `json:"metric" protobuf:"bytes,3,name=metric"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func PidfdGetfd(pidfd int, targetfd int, flags int) (fd int, err error) {
    	r0, _, e1 := Syscall(SYS_PIDFD_GETFD, uintptr(pidfd), uintptr(targetfd), uintptr(flags))
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	// Now no policies are in effect
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.1"))[0].Address.GetWorkload().AuthorizationPolicies,
    		nil)
    
    	s.addPolicy(t, "gateway-targeted", testNS, nil, gvk.AuthorizationPolicy, func(o controllers.Object) {
    		p := o.(*clientsecurityv1beta1.AuthorizationPolicy)
    		p.Spec.TargetRef = &v1beta1.PolicyTargetReference{
    			Group: gvk.KubernetesGateway.Group,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/func.go

    		sb = f.Entry.NewValue0(initpos.WithNotStmt(), OpSB, f.Config.Types.Uintptr)
    	}
    	if sp == nil {
    		sp = f.Entry.NewValue0(initpos.WithNotStmt(), OpSP, f.Config.Types.Uintptr)
    	}
    	return
    }
    
    // useFMA allows targeted debugging w/ GOFMAHASH
    // If you have an architecture-dependent FP glitch, this will help you find it.
    func (f *Func) useFMA(v *Value) bool {
    	if !f.Config.UseFMA {
    		return false
    	}
    	if base.FmaHash == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. pkg/controller/deployment/util/deployment_util.go

    			// We deterministically choose the oldest new ReplicaSet.
    			return rsList[i]
    		}
    	}
    	// new ReplicaSet does not exist.
    	return nil
    }
    
    // FindOldReplicaSets returns the old replica sets targeted by the given Deployment, with the given slice of RSes.
    // Note that the first set of old replica sets doesn't include the ones with no pods, and the second set of old replica sets include all old replica sets.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
Back to top