Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 136 for yield (0.26 sec)

  1. src/cmd/go/internal/load/pkg.go

    // 'patterns'. If a named package cannot be loaded, PackagesAndErrors returns
    // a *Package with the Error field describing the failure. If errors are found
    // loading imported packages, the DepsErrors field is set. The Incomplete field
    // may be set as well.
    //
    // To obtain a flat list of packages, use PackageList.
    // To report errors loading packages, use ReportPackageErrors.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	Addralign uint32
    }
    
    /*
     * Relocation entries.
     */
    
    // ELF32 Relocations that don't need an addend field.
    type Rel32 struct {
    	Off  uint32 /* Location to be relocated. */
    	Info uint32 /* Relocation type and symbol index. */
    }
    
    // ELF32 Relocations that need an addend field.
    type Rela32 struct {
    	Off    uint32 /* Location to be relocated. */
    	Info   uint32 /* Relocation type and symbol index. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    validate signature of the JWT. type: string outputClaimToHeaders: description: This field specifies a list of operations to copy the claim to HTTP headers on a successfully verified token. items: properties: claim: description: The name of the claim to be copied from. type: string header: description: The name of the header to be created. type: string type: object type: array outputPayloadToHeade: description: This field specifies the header name to output a successfully verified JWT payload to the backend....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          for (auto& field : dict.fields()) {
            fields.push_back(&field);
          }
          llvm::sort(fields, [](const FieldTy* a, const FieldTy* b) {
            return a->first < b->first;
          });
          for (auto& field : fields) {
            current_index_path_.push_back(builder_.getStringAttr(field->first));
            RecursivelyFindLeaves(field->second);
            current_index_path_.pop_back();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

    			&extensions.WasmPlugin{
    				Url:    "http://test.com/test",
    				Sha256: "01ba47",
    			},
    			"sha256 field must be 64 characters long", "",
    		},
    		{
    			"invalid sha",
    			&extensions.WasmPlugin{
    				Url:    "http://test.com/test",
    				Sha256: "test",
    			},
    			"sha256 field must be 64 characters long", "",
    		},
    		{
    			"invalid sha characters",
    			&extensions.WasmPlugin{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    	// 0x0f even if all other VEX fields are 0.
    	avxEscape = 1 << 6
    
    	// P field - 2 bits
    	vex66 = 1 << 0
    	vexF3 = 2 << 0
    	vexF2 = 3 << 0
    	// L field - 1 bit
    	vexLZ  = 0 << 2
    	vexLIG = 0 << 2
    	vex128 = 0 << 2
    	vex256 = 1 << 2
    	// W field - 1 bit
    	vexWIG = 0 << 7
    	vexW0  = 0 << 7
    	vexW1  = 1 << 7
    	// M field - 5 bits, but mostly reserved; we can store up to 3
    	vex0F   = 1 << 3
    	vex0F38 = 2 << 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.4.md

    * fix mesos unit tests ([#38196](https://github.com/kubernetes/kubernetes/pull/38196), [@deads2k](https://github.com/deads2k))
    * Fix Service Update on LoadBalancerSourceRanges Field ([#37720](https://github.com/kubernetes/kubernetes/pull/37720), [@freehan](https://github.com/freehan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    	buffer.WriteString("fe00::1\tip6-allnodes\n")
    	buffer.WriteString("fe00::2\tip6-allrouters\n")
    	if len(hostDomainName) > 0 {
    		// host entry generated for all IPs in podIPs
    		// podIPs field is populated for clusters even
    		// dual-stack feature flag is not enabled.
    		for _, hostIP := range hostIPs {
    			buffer.WriteString(fmt.Sprintf("%s\t%s.%s\t%s\n", hostIP, hostName, hostDomainName, hostName))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. src/crypto/x509/verify_test.go

    		roots:       []string{invalidCNRoot},
    		currentTime: 1540000000,
    		systemSkip:  true, // does not chain to a system root
    
    		errorCallback: expectHostnameError("certificate relies on legacy Common Name field"),
    	},
    	{
    		// A certificate with an AKID should still chain to a parent without SKID.
    		// See Issue 30079.
    		name:        "AKIDNoSKID",
    		leaf:        leafWithAKID,
    		roots:       []string{rootWithoutSKID},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal_test.go

    									// TODO: Change this to &tc.CPUTarget and the expected ScaleLimited
    									//       condition to False. This test incorrectly leaves the v1
    									//       HPA field TargetCPUUtilizization field blank and the
    									//       controller defaults to a target of 80. So the test relies
    									//       on downscale stabilization to prevent a scale change.
    									AverageUtilization: &eighty,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top