Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 273 for cont (0.05 sec)

  1. src/go/types/stmt.go

    		case isFunc && ((k == nil) != (sKey == nil) || (v == nil) != (sValue == nil)):
    			var count string
    			switch {
    			case k == nil:
    				count = "no iteration variables"
    			case v == nil:
    				count = "one iteration variable"
    			default:
    				count = "two iteration variables"
    			}
    			check.softErrorf(&x, InvalidIterVar, "range over %s must have %s", &x, count)
    		}
    		key, val = k, v
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DefaultExternalComponentGraphResolveState.java

                ConfigurationGraphResolveState conf = component.getConfiguration(name);
                if (conf == null) {
                    return null;
                }
                assert conf.getMetadata().isCanBeConsumed() : "External components' configurations are always consumable";
                return conf.asVariant();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/crypto/tls/bogo_shim_test.go

    		}
    
    		conn, err := net.Dial("tcp", net.JoinHostPort("localhost", *port))
    		if err != nil {
    			log.Fatalf("dial err: %s", err)
    		}
    		defer conn.Close()
    
    		// Write the shim ID we were passed as a little endian uint64
    		shimIDBytes := make([]byte, 8)
    		byteorder.LePutUint64(shimIDBytes, *shimID)
    		if _, err := conn.Write(shimIDBytes); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. internal/dsync/drwmutex.go

    }
    
    // NewDRWMutex - initializes a new dsync RW mutex.
    func NewDRWMutex(clnt *Dsync, names ...string) *DRWMutex {
    	restClnts, _ := clnt.GetLockers()
    	sort.Strings(names)
    	return &DRWMutex{
    		writeLocks:           make([]string, len(restClnts)),
    		readLocks:            make([]string, len(restClnts)),
    		Names:                names,
    		clnt:                 clnt,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/dilated-conv.mlir

      %cst = "tf.Const"() {value = dense<0> : tensor<1x2xi32>} : () -> tensor<1x2xi32>
      %cst_0 = "tf.Const"() {value = dense<-2> : tensor<i32>} : () -> tensor<i32>
      %cst_1 = "tf.Const"() {value = dense<2> : tensor<1xi32>} : () -> tensor<1xi32>
      %cst_2 = "tf.Const"() {value = dense<4> : tensor<1x2xi32>} : () -> tensor<1x2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/asm.go

    func (p *Parser) append(prog *obj.Prog, cond string, doLabel bool) {
    	if cond != "" {
    		switch p.arch.Family {
    		case sys.ARM:
    			if !arch.ARMConditionCodes(prog, cond) {
    				p.errorf("unrecognized condition code .%q", cond)
    				return
    			}
    
    		case sys.ARM64:
    			if !arch.ARM64Suffix(prog, cond) {
    				p.errorf("unrecognized suffix .%q", cond)
    				return
    			}
    
    		case sys.AMD64, sys.I386:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/arch/arm64.go

    	return false
    }
    
    // ARM64Suffix handles the special suffix for the ARM64.
    // It returns a boolean to indicate success; failure means
    // cond was unrecognized.
    func ARM64Suffix(prog *obj.Prog, cond string) bool {
    	if cond == "" {
    		return true
    	}
    	bits, ok := parseARM64Suffix(cond)
    	if !ok {
    		return false
    	}
    	prog.Scond = bits
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 09:04:58 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesCachingIntegrationTest.groovy

            GradleMetadataResolveRunner.useIvy() ? 'integration' : 'release'
        }
    
        def setup() {
            buildFile << """
    dependencies {
        conf 'org.test:projectA:1.0'
    }
    
    task resolve(type: Sync) {
        from configurations.conf
        into 'libs'
    }
    """
            executer.withArgument("-Ddebug.modulesource=true")
        }
    
        def "rule is cached across builds"() {
            repository {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  9. pkg/volume/util/nestedpendingoperations/nestedpendingoperations.go

    		operations:                []operation{},
    		exponentialBackOffOnError: exponentialBackOffOnError,
    	}
    	g.cond = sync.NewCond(&g.lock)
    	return g
    }
    
    type nestedPendingOperations struct {
    	operations                []operation
    	exponentialBackOffOnError bool
    	cond                      *sync.Cond
    	lock                      sync.RWMutex
    }
    
    type operation struct {
    	key              operationKey
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/freeze_variables.mlir

        %0 = "tf.Const"() {value = dense<1.0> : tensor<0xf32>} : () -> tensor<0xf32>
        %1:2 = "tf.WhileRegion"(%arg0, %0) ({
          ^bb0(%carg0: tensor<i32>, %carg1: tensor<0xf32>):
             %limit = arith.constant dense<5> : tensor<i32>
             %cond = "tf.NotEqual"(%carg0, %limit) : (tensor<i32>, tensor<i32>) -> tensor<i1>
             "tf.Yield"(%cond) : (tensor<i1>) -> ()
        },  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 23.6K bytes
    - Viewed (0)
Back to top