Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 163 for yield (0.37 sec)

  1. src/cmd/go/alldocs.go

    // printing. Erroneous packages will have a non-empty ImportPath and
    // a non-nil Error field; other information may or may not be missing
    // (zeroed).
    //
    // The -export flag causes list to set the Export field to the name of a
    // file containing up-to-date export information for the given package,
    // and the BuildID field to the build ID of the compiled package.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/UnsignedBytes.java

          static final int BYTE_ARRAY_BASE_OFFSET = theUnsafe.arrayBaseOffset(byte[].class);
    
          static {
            // fall back to the safer pure java implementation unless we're in
            // a 64-bit JVM with an 8-byte aligned field offset.
            if (!("64".equals(System.getProperty("sun.arch.data.model"))
                && (BYTE_ARRAY_BASE_OFFSET % 8) == 0
                // sanity check - this should never fail
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder.go

    	} else {
    		subsetClusterName = model.BuildDNSSrvSubsetKey(model.TrafficDirectionOutbound, subset.Name, service.Hostname, opts.port.Port)
    	}
    	// clusters with discovery type STATIC, STRICT_DNS rely on cluster.LoadAssignment field.
    	// ServiceEntry's need to filter hosts based on subset.labels in order to perform weighted routing
    	var lbEndpoints []*endpoint.LocalityLbEndpoints
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/body-multiple-params.md

        ```
    
    In this case, **FastAPI** will notice that there are more than one body parameters in the function (two parameters that are Pydantic models).
    
    So, it will then use the parameter names as keys (field names) in the body, and expect a body like:
    
    ```JSON
    {
        "item": {
            "name": "Foo",
            "description": "The pretender",
            "price": 42.0,
            "tax": 3.2
        },
        "user": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 09 02:01:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    - Fix the comment for the Job's managedBy field ([#124793](https://github.com/kubernetes/kubernetes/pull/124793), [@mimowo](https://github.com/mimowo)) [SIG API Machinery and Apps]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    	//  * If Type is Deleted: the state of the object immediately before deletion.
    	//  * If Type is Bookmark: the object (instance of a type being watched) where
    	//    only ResourceVersion field is set. On successful restart of watch from a
    	//    bookmark resourceVersion, client is guaranteed to not get repeat event
    	//    nor miss any events.
    	//  * If Type is Error: *api.Status is recommended; other types may make sense
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  7. CHANGELOG/CHANGELOG-1.27.md

      - Added `allocatedResources` field to container status in pod status that describes the node resources allocated to a pod.
      - Added `resources` field to container status that reports actual resources applied to running containers.
      - Added `resize` field to pod status that describes the state of a requested pod resize.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. cmd/api-response.go

    	Name      string
    	Prefix    string
    	KeyMarker string
    
    	// When response is truncated (the IsTruncated element value in the response
    	// is true), you can use the key name in this field as marker in the subsequent
    	// request to get next set of objects. Server lists objects in alphabetical
    	// order Note: This element is returned only if you have delimiter request parameter
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    			}
    		case k8s.QueryParamMatchRegularExpression:
    			res[string(qp.Name)] = &istio.StringMatch{
    				MatchType: &istio.StringMatch_Regex{Regex: qp.Value},
    			}
    		default:
    			// Should never happen, unless a new field is added
    			return nil, &ConfigError{Reason: InvalidConfiguration, Message: fmt.Sprintf("unknown type: %q is not supported QueryParams type", tp)}
    		}
    	}
    
    	if len(res) == 0 {
    		return nil, nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. src/sync/map.go

    //
    // [the Go memory model]: https://go.dev/ref/mem
    type Map struct {
    	mu Mutex
    
    	// read contains the portion of the map's contents that are safe for
    	// concurrent access (with or without mu held).
    	//
    	// The read field itself is always safe to load, but must only be stored with
    	// mu held.
    	//
    	// Entries stored in read may be updated concurrently without mu, but updating
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top