Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 100 for target01 (0.14 sec)

  1. pkg/controller/resourcequota/resource_quota_controller.go

    		resourceQuotaResources := quota.ResourceNames(resourceQuota.Status.Hard)
    		if intersection := evaluator.MatchingResources(resourceQuotaResources); len(intersection) > 0 {
    			// TODO: make this support targeted replenishment to a specific kind, right now it does a full recalc on that quota.
    			rq.enqueueResourceQuota(logger, resourceQuota)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/check.go

    					f.Fatalf("control value %s for %s doesn't dominate", c, b)
    				}
    			}
    		}
    	}
    
    	// Check loop construction
    	if f.RegAlloc == nil && f.pass != nil { // non-nil pass allows better-targeted debug printing
    		ln := f.loopnest()
    		if !ln.hasIrreducible {
    			po := f.postorder() // use po to avoid unreachable blocks.
    			for _, b := range po {
    				for _, s := range b.Succs {
    					bb := s.Block()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/gateway-api-crd.yaml

                          description: Name is the name of the target resource.
                          maxLength: 253
                          minLength: 1
                          type: string
                        sectionName:
                          description: |-
                            SectionName is the name of a section within the target resource. When
                            unspecified, this targetRef targets the entire resource. In the following
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    [[sec:verification]]
    === Verification of downloaded Gradle distributions
    
    The Gradle Wrapper allows for verification of the downloaded Gradle distribution via SHA-256 hash sum comparison.
    This increases security against targeted attacks by preventing a man-in-the-middle attacker from tampering with the downloaded Gradle distribution.
    
    To enable this feature, download the `.sha256` file associated with the Gradle distribution you want to verify.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top