Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 647 for assign_id (0.35 sec)

  1. test/fixedbugs/bug243.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "errors"
    
    // Issue 481: closures and var declarations
    // with multiple variables assigned from one
    // function call.
    
    func main() {
    	var listen, _ = Listen("tcp", "127.0.0.1:0")
    
    	go func() {
    		for {
    			var conn, _ = listen.Accept()
    			_ = conn
    		}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 893 bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http2/Settings.kt

        return this
      }
    
      /** Returns true if a value has been assigned for the setting `id`. */
      fun isSet(id: Int): Boolean {
        val bit = 1 shl id
        return set and bit != 0
      }
    
      /** Returns the value for the setting `id`, or 0 if unset. */
      operator fun get(id: Int): Int = values[id]
    
      /** Returns the number of settings that have values assigned. */
      fun size(): Int = Integer.bitCount(set)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/go/types/assignments.go

    // This file implements initialization and assignment checks.
    
    package types
    
    import (
    	"fmt"
    	"go/ast"
    	. "internal/types/errors"
    	"strings"
    )
    
    // assignment reports whether x can be assigned to a variable of type T,
    // if necessary by attempting to convert untyped values to the appropriate
    // type. context describes the context in which the assignment takes place.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1/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"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 19:42:48 UTC 2021
    - 951 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/readme-templates/application-body.adoc.template

    == Run the application
    
    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.
    
    [listing.terminal.sample-command]
    ----
    \$ ./gradlew run
    
    > Task :${subprojectName.raw}:run
    Hello world!
    
    BUILD SUCCESSFUL
    2 actionable tasks: 2 executed
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. test/fixedbugs/issue14591.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test to make sure we don't think values are dead
    // when they are assigned to a PPARAMOUT slot before
    // the last GC safepoint.
    
    package main
    
    import (
    	"fmt"
    	"runtime"
    )
    
    // When a T is deallocated, T[1] is certain to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 769 bytes
    - Viewed (0)
  7. tensorflow/c/eager/parallel_device/parallel_device_testlib.h

      // Adds `value` to the existing value of the variable.
      void AssignAdd(TFE_Context* context, TFE_TensorHandle* value,
                     TF_Status* status);
    
     private:
      // Helper for running any single-argument assignment ops (Assign, AssignAdd,
      // AssignSub, ...).
      void GeneralAssignment(const char* op_name, TFE_Context* context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 09 01:12:35 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskFilePropertyBuilder.java

        /**
         * Sets the name for this property. The name must be a non-empty string.
         *
         * <p>If the method is not called, or if it is called with {@code null}, a name
         * will be assigned to the property automatically.</p>
         */
        TaskFilePropertyBuilder withPropertyName(String propertyName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 10:29:21 UTC 2018
    - 1.2K 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. pilot/pkg/config/kube/gateway/testdata/mcs.status.yaml.golden

      conditions:
      - lastTransitionTime: fake
        message: Resource accepted
        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: Resource programmed, assigned to service(s) istio-ingressgateway.istio-system.svc.domain.suffix:34000
        reason: Programmed
        status: "True"
        type: Programmed
      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 21:44:38 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top