Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 213 for yield (0.05 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

                        SyntaxErrorMessage syntaxErrorMessage = (SyntaxErrorMessage) message;
                        Field sourceField = SyntaxErrorMessage.class.getDeclaredField("source");
                        sourceField.setAccessible(true);
                        SourceUnit sourceUnit = (SourceUnit) sourceField.get(syntaxErrorMessage);
                        Field nameField = SourceUnit.class.getDeclaredField("name");
                        nameField.setAccessible(true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. src/net/netip/netip_test.go

    		"192.168.12345",
    		// IPv4 in class B form, with a small enough number to be
    		// parseable as a regular dotted decimal field.
    		"127.0.1",
    		// IPv4 in class A form
    		"192.1234567",
    		// IPv4 in class A form, with a small enough number to be
    		// parseable as a regular dotted decimal field.
    		"127.1",
    		// IPv4 field has value >255
    		"192.168.300.1",
    		// IPv4 with too many fields
    		"192.168.0.1.5.6",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  3. pkg/kubelet/container/runtime.go

    	for _, c := range p.Sandboxes {
    		if c.ID == id {
    			return c
    		}
    	}
    	return nil
    }
    
    // ToAPIPod converts Pod to v1.Pod. Note that if a field in v1.Pod has no
    // corresponding field in Pod, the field would not be populated.
    func (p *Pod) ToAPIPod() *v1.Pod {
    	var pod v1.Pod
    	pod.UID = p.ID
    	pod.Name = p.Name
    	pod.Namespace = p.Namespace
    
    	for _, c := range p.Containers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    	err = c.client.Get().
    		Namespace(c.ns).
    		Resource("examples").
    		Name(name).
    		VersionedParams(&options, scheme.ParameterCodec).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // List takes label and field selectors, and returns the list of Examples that match those selectors.
    func (c *examples) List(ctx context.Context, opts metav1.ListOptions) (*v1.ExampleList, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Logging.kt

    
    fun MutableIsolateContext.reportUnsupportedFieldType(
        unsupportedType: KClass<*>,
        action: String,
        fieldName: String,
        fieldValue: Any? = null
    ) {
        withPropertyTrace(PropertyKind.Field, fieldName) {
            if (fieldValue == null) logUnsupported(action, unsupportedType)
            else logUnsupportedBaseType(action, unsupportedType, unpackType(fieldValue))
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.proto

      // Namespace represents the namespace for the service.
      string namespace = 2;
      // Hostname represents the FQDN of the service.
      // For Kubernetes, this would be <name>.<namespace>.svc.<cluster domain>.
      // TODO: support this field
      string hostname = 3;
      // Address represents the addresses the service can be reached at.
      // There may be multiple addresses for a single service if it resides in multiple networks,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/LittleEndianByteArray.java

     * the License.
     */
    
    package com.google.common.hash;
    
    import com.google.common.primitives.Longs;
    import java.lang.reflect.Field;
    import java.nio.ByteOrder;
    import java.security.AccessController;
    import java.security.PrivilegedActionException;
    import java.security.PrivilegedExceptionAction;
    import sun.misc.Unsafe;
    
    /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/os/exec.go

    var ErrProcessDone = errors.New("os: process already finished")
    
    type processMode uint8
    
    const (
    	// modePID means that Process operations such use the raw PID from the
    	// Pid field. handle is not used.
    	//
    	// This may be due to the host not supporting handles, or because
    	// Process was created as a literal, leaving handle unset.
    	//
    	// This must be the zero value so Process literals get modePID.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                InputSource v4src = loc != null ? loc.getSource() : null;
                if (v4src != null) {
                    try {
                        Field field = InputSource.class.getDeclaredField("modelId");
                        field.setAccessible(true);
                        field.set(v4src, ModelProblemUtils.toId(model));
                    } catch (Throwable t) {
                        // TODO: use a lazy source ?
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    	err = c.client.Get().
    		Resource("customresourcedefinitions").
    		Name(name).
    		VersionedParams(&options, scheme.ParameterCodec).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // List takes label and field selectors, and returns the list of CustomResourceDefinitions that match those selectors.
    func (c *customResourceDefinitions) List(ctx context.Context, opts metav1.ListOptions) (*v1.CustomResourceDefinitionList, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top