Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,105 for assignOp (0.47 sec)

  1. tests/serializer_test.go

    			IsIntern: false,
    		},
    		CustomSerializerString: "world",
    	}
    
    	// first time insert record
    	out := SerializerStruct{}
    	if err := DB.Assign(data).FirstOrCreate(&out).Error; err != nil {
    		t.Fatalf("failed to FirstOrCreate Assigned data, got error %v", err)
    	}
    
    	var result SerializerStruct
    	if err := DB.First(&result, out.ID).Error; err != nil {
    		t.Fatalf("failed to query data, got error %v", err)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 21 14:09:38 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassGeneratorSuffixRegistry.java

            }
            return suffix;
        }
    
        /**
         * Assigns a suffix to use for generated class names.
         */
        public static String assign(String suffix) {
            if (SUFFIXES.putIfAbsent(suffix, markerForSuffix(suffix)) == null) {
                return suffix;
            }
            int index = 1;
            while (true) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. .github/workflows/create_issue.js

     * limitations under the License.
     * =============================================================================
     */
    
    /** Extracts PR from commit message and creates a GitHub Issue on Rollback of PR
      Created issue is assigned to original PR owner and reviewer.
    
      @param {!object}
        github enables querying for PR and also create issue using rest endpoint
        context has the commit message details in the payload
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 18 23:04:59 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  4. .github/workflows/trusted_partners.js

      return domain;
    };
    
    /** For trusted parters like Intel, we want to auto-run tests
        This allows us to reduce the delay to external partners
        Add Labels - kokoro:force-run
        The PR is also assigned to specific teams to fast track review
        Additional reviewers can be added manually based on PR contents
      @param {!object}
        github enables querying for PR and also create issue using rest endpoint
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 07 13:52:04 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. src/internal/reflectlite/value.go

    func ValueOf(i any) Value {
    	if i == nil {
    		return Value{}
    	}
    	return unpackEface(i)
    }
    
    // assignTo returns a value v that can be assigned directly to typ.
    // It panics if v is not assignable to typ.
    // For a conversion to an interface type, target is a suggested scratch space to use.
    func (v Value) assignTo(context string, dst *abi.Type, target unsafe.Pointer) Value {
    	// if v.flag&flagMethod != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/util/ports/FixedAvailablePortAllocatorTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.util.ports
    
    class FixedAvailablePortAllocatorTest extends AbstractPortAllocatorTest {
    
        def "assigns a unique fixed port range based on worker id (totalWorkers: #totalWorkers, totalAgents: #totalAgents)" () {
            int rangeSize = FixedAvailablePortAllocator.DEFAULT_RANGE_SIZE - 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 05 09:53:33 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  7. src/cmd/fix/typecheck.go

    // typeof maps AST nodes to type information in gofmt string form.
    // assign maps type strings to lists of expressions that were assigned
    // to values of another type that were assigned to that type.
    func typecheck(cfg *TypeConfig, f *ast.File) (typeof map[any]string, assign map[string][]any) {
    	typeof = make(map[any]string)
    	assign = make(map[string][]any)
    	cfg1 := &TypeConfig{}
    	*cfg1 = *cfg // make copy so we can add locally
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 22:02:42 UTC 2022
    - 20.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    Here is an example of a task that consumes the previous service via a property annotated with `@ServiceReference`:
    
    ====
    [source.multi-language-sample,java]
    .Download.java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/types.go

    	GetCapacity() (v1.ResourceList, v1.ResourceList, []string)
    	GetWatcherHandler() cache.PluginHandler
    
    	// GetDevices returns information about the devices assigned to pods and containers
    	GetDevices(podUID, containerName string) ResourceDeviceInstances
    
    	// GetAllocatableDevices returns information about all the devices known to the manager
    	GetAllocatableDevices() ResourceDeviceInstances
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/rangefunc/rewrite.go

    	return n
    }
    
    // setPos walks the top structure of x that has no position assigned
    // and assigns it all to have position pos.
    // When setPos encounters a syntax node with a position assigned,
    // setPos does not look inside that node.
    // setPos only needs to handle syntax we create in this package;
    // all other syntax should have positions assigned already.
    func setPos(x syntax.Node, pos syntax.Pos) {
    	if x == nil {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top