Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Uncommon (0.17 sec)

  1. src/net/http/h2_bundle.go

    		"vary",
    		"via",
    		"www-authenticate",
    		"x-forwarded-for",
    		"x-forwarded-proto",
    	}
    	http2commonLowerHeader = make(map[string]string, len(common))
    	http2commonCanonHeader = make(map[string]string, len(common))
    	for _, v := range common {
    		chk := CanonicalHeaderKey(v)
    		http2commonLowerHeader[chk] = v
    		http2commonCanonHeader[v] = chk
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    			ssaDumpCFG = spl[1]
    		}
    	}
    }
    
    func InitConfig() {
    	types_ := ssa.NewTypes()
    
    	if Arch.SoftFloat {
    		softfloatInit()
    	}
    
    	// Generate a few pointer types that are uncommon in the frontend but common in the backend.
    	// Caching is disabled in the backend, so generating these here avoids allocations.
    	_ = types.NewPtr(types.Types[types.TINTER])                             // *interface{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. ChangeLog.md

    - [`KT-60657`](https://youtrack.jetbrains.com/issue/KT-60657) Introduce Common String.toCharArray(destination) in stdlib
    - [`KT-57150`](https://youtrack.jetbrains.com/issue/KT-57150) Introduce common protected property AbstractMutableList.modCount
    - [`KT-57151`](https://youtrack.jetbrains.com/issue/KT-57151) Introduce common protected function AbstractMutableList.removeRange
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    type PersistentVolumeClaimList struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ListMeta
    	Items []PersistentVolumeClaim
    }
    
    // PersistentVolumeClaimSpec describes the common attributes of storage devices
    // and allows a Source for provider-specific attributes
    type PersistentVolumeClaimSpec struct {
    	// Contains the types of access modes required
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (EndpointPort) SwaggerDoc() map[string]string {
    	return map_EndpointPort
    }
    
    var map_EndpointSubset = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // mycompany.com/my-custom-protocol.
      // +optional
      optional string appProtocol = 4;
    }
    
    // EndpointSubset is a group of addresses with a common set of ports. The
    // expanded set of endpoints is the Cartesian product of Addresses x Ports.
    // For example, given:
    //
    // 	{
    // 	  Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
    	Items []PersistentVolumeClaim `json:"items" protobuf:"bytes,2,rep,name=items"`
    }
    
    // PersistentVolumeClaimSpec describes the common attributes of storage devices
    // and allows a Source for provider-specific attributes
    type PersistentVolumeClaimSpec struct {
    	// accessModes contains the desired access modes the volume should have.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.28.md

    - github.com/prometheus/client_model: [v0.3.0 → v0.4.0](https://github.com/prometheus/client_model/compare/v0.3.0...v0.4.0)
    - github.com/prometheus/common: [v0.37.0 → v0.44.0](https://github.com/prometheus/common/compare/v0.37.0...v0.44.0)
    - github.com/prometheus/procfs: [v0.8.0 → v0.10.1](https://github.com/prometheus/procfs/compare/v0.8.0...v0.10.1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    	allNames := sets.Set[string]{}
    	for _, ctr := range regularContainers {
    		allNames.Insert(ctr.Name)
    	}
    	for i, ctr := range containers {
    		idxPath := fldPath.Index(i)
    
    		// Apply the validation common to all container types
    		allErrs = append(allErrs, validateContainerCommon(&ctr, volumes, podClaimNames, idxPath, opts, podRestartPolicy, hostUsers)...)
    
    		restartAlways := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      // - rhs: [RHSBATCHDIMS..., RHSROWS, RHSCOLS]
      // - result: [broadcast(LHSBATCHDIMS, RHSBATCHDIMS)..., LHSROWS, RHSCOLS]
      // To perform the matmul, we need to first broadcast lhs and rhs to a common
      // set of leading dimensions before doing the actual matmul.
      // That's what the code below does.
      // In particular, we populate out_lhs and out_rhs to have dimension structure:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top