Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,196 for assignOp (0.18 sec)

  1. src/reflect/value.go

    			//
    			// If/when this happens, take note of the following:
    			//
    			// We must clear the destination before calling assignTo,
    			// in case assignTo writes (with memory barriers) to the
    			// target location used as scratch space. See issue 39541.
    			v = v.assignTo("reflect.MakeFunc", typ, nil)
    		stepsLoop:
    			for _, st := range abid.ret.stepsForValue(i) {
    				switch st.kind {
    				case abiStepStack:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. schema/field_test.go

    		"birthday":   time.Now(),
    		"active":     f,
    	}
    
    	for k, v := range newValues {
    		if err := userSchema.FieldsByDBName[k].Set(context.Background(), reflectValue, v); err != nil {
    			t.Errorf("no error should happen when assign value to field %v, but got %v", k, err)
    		}
    	}
    	newValues["updated_at"] = time.Time{}
    	newValues["active"] = false
    	checkField(t, userSchema, reflectValue, newValues)
    
    	// test valuer and other type
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 19 09:02:53 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/podresources/server_v1.go

    		cpusProvider:             providers.Cpus,
    		memoryProvider:           providers.Memory,
    		dynamicResourcesProvider: providers.DynamicResources,
    	}
    }
    
    // List returns information about the resources assigned to pods on the node
    func (p *v1PodResourcesServer) List(ctx context.Context, req *podresourcesv1.ListPodResourcesRequest) (*podresourcesv1.ListPodResourcesResponse, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 13:00:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalFileDependencyMetadata.java

     */
    public interface LocalFileDependencyMetadata {
        /**
         * Returns the id of the component that the file dependency references, if known. If not known an arbitrary identifier will be assigned.
         */
        @Nullable
        ComponentIdentifier getComponentId();
    
        /**
         * Remove this.
         */
        FileCollectionDependency getSource();
    
        FileCollectionInternal getFiles();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1beta1/well_known_annotations.go

    	// IngressClass should be considered default. When a single IngressClass
    	// resource has this annotation set to true, new Ingress resources without a
    	// class specified will be assigned this default class.
    	AnnotationIsDefaultIngressClass = "ingressclass.kubernetes.io/is-default-class"
    
    	// AnnotationIngressClass indicates the class of an Ingress to be used when
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 02 02:17:09 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelElement.java

        /**
         * Returns the name of this element. Each element has a name associated with it, that uniquely identifies the element amongst its siblings.
         * Some element have their name generated or automatically assigned, and for these elements the name may not be human consumable.
         */
        @Override
        String getName();
    
        /**
         * Returns a human-consumable display name for this element.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    Thanks to the `application` plugin, you can run the application directly from the command line.
    The `run` task tells Gradle to execute the `main` method in the class assigned to the `mainClass` property.
    
    [source,text]
    ----
    $ ./gradlew run
    
    > Task :app:run
    Hello World!
    
    BUILD SUCCESSFUL in 998ms
    2 actionable tasks: 2 executed
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. test/fixedbugs/bug206.go

    package main
    
    import "go/ast";
    
    func g(list []ast.Expr) {
    	n := len(list)-1;
    	println(list[n].Pos());
    }
    
    
    // f is the same as g except that the expression assigned to n is inlined.
    func f(list []ast.Expr) {
    	// n := len(list)-1;
    	println(list[len(list)-1 /* n */].Pos());
    }
    
    
    func main() {
    	list := []ast.Expr{&ast.Ident{}};
    	g(list);  // this works
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 31 17:36:45 UTC 2018
    - 1K bytes
    - Viewed (0)
  9. test/fixedbugs/issue27695.go

    		s, e := method(nil)
    		// The bug in issue27695 happens here, during the return
    		// from the above call (at the end of reflect.callMethod
    		// when preparing to return). The result value that
    		// is assigned to s was not being scanned if GC happens
    		// to occur there.
    		i := interface{}(s)
    		return i, e
    	}
    	return nil, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 29 20:25:24 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/util/ports/ReleasingPortAllocator.groovy

     */
    
    package org.gradle.util.ports
    
    import org.junit.rules.TestRule
    import org.junit.runner.Description
    import org.junit.runners.model.Statement
    
    /**
     * A TestRule that releases any assigned ports after the test executes.
     */
    class ReleasingPortAllocator implements PortAllocator, TestRule {
        final PortAllocator delegate
        List<Integer> portsAllocated = new ArrayList<>()
    
        ReleasingPortAllocator() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top