Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,018 for continueCh (0.17 sec)

  1. src/internal/poll/writev.go

    	var n int64
    	var err error
    	for len(*v) > 0 {
    		iovecs = iovecs[:0]
    		for _, chunk := range *v {
    			if len(chunk) == 0 {
    				continue
    			}
    			iovecs = append(iovecs, newIovecWithBase(&chunk[0]))
    			if fd.IsStream && len(chunk) > 1<<30 {
    				iovecs[len(iovecs)-1].SetLen(1 << 30)
    				break // continue chunk on next writev
    			}
    			iovecs[len(iovecs)-1].SetLen(len(chunk))
    			if len(iovecs) == maxVec {
    				break
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. cmd/metacache-set.go

    			if returned {
    				// past limit
    				continue
    			}
    			mu.Lock()
    			returned = done
    			mu.Unlock()
    			if returned {
    				resCh = nil
    				continue
    			}
    			if !o.IncludeDirectories && (entry.isDir() || (!o.Versioned && entry.isObjectDir() && entry.isLatestDeletemarker())) {
    				continue
    			}
    			if o.Marker != "" && entry.name < o.Marker {
    				continue
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/exitPointEquivalence/breakContinueAndDefault.txt

    KaDataFlowExitPointSnapshot:
      defaultExpressionInfo = DefaultExpressionInfo:
        expression = if (a - b > 0) continue@loop1
        type = kotlin.Unit
      hasEscapingJumps = true
      hasJumps = true
      hasMultipleJumpKinds = true
      hasMultipleJumpTargets = false
      jumpExpressions = [
        break@loop2,
        continue@loop1
      ]
      returnValueType = null
      valuedReturnExpressions = []
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 401 bytes
    - Viewed (0)
  4. cmd/metacache-entries.go

    			}
    
    			continue
    		}
    
    		if entry.isDir() {
    			if delimiter == "" {
    				continue
    			}
    			idx := strings.Index(strings.TrimPrefix(entry.name, prefix), delimiter)
    			if idx < 0 {
    				continue
    			}
    			idx = len(prefix) + idx + len(delimiter)
    			currPrefix := entry.name[:idx]
    			if currPrefix == prevPrefix {
    				continue
    			}
    			prevPrefix = currPrefix
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/mark_input_output_aliases.cc

        auto read_op = llvm::dyn_cast_or_null<TF::ReadVariableOp>(
            operand.get().getDefiningOp());
        if (!read_op) continue;
        if (!read_op->hasOneUse()) continue;
        auto it = resource_alias_info_map.find(read_op.getResource());
        if (it == resource_alias_info_map.end()) continue;
        AliasInfo& alias_info = it->getSecond();
        // TODO(b/184420848): We may not need to skip aliasing for entire function
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 04:14:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

                fails 'entryPoint', '-PentryPoint.broken', '--continue'
                result.assertTasksExecutedInOrder ':entryPointDep', ':entryPoint'
            }
            2.times {
                fails 'entryPoint', '-PentryPointDep.broken'
                result.assertTasksExecutedInOrder ':entryPointDep'
            }
            2.times {
                fails 'entryPoint', '-PentryPointDep.broken', '--continue'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/scopes/KtFe10FileScope.kt

                        val descriptor = context[BindingContext.DECLARATION_TO_DESCRIPTOR, declaration] as? CallableDescriptor ?: continue
                        val ktSymbol = descriptor.takeIf { nameFilter(it.name) }?.toKtCallableSymbol(analysisContext) ?: continue
                        yield(ktSymbol)
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/regexp/exec_test.go

    		if line[0] == '#' || line[0] == '\n' {
    			continue Reading
    		}
    		line = line[:len(line)-1]
    		field := notab.FindAllString(line, -1)
    		for i, f := range field {
    			if f == "NULL" {
    				field[i] = ""
    			}
    			if f == "NIL" {
    				t.Logf("%s:%d: skip: %s", file, lineno, line)
    				continue Reading
    			}
    		}
    		if len(field) == 0 {
    			continue Reading
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. src/crypto/tls/ech.go

    		if _, ok := hpke.SupportedKEMs[ec.KemID]; !ok {
    			continue
    		}
    		var validSCS bool
    		for _, cs := range ec.SymmetricCipherSuite {
    			if _, ok := hpke.SupportedAEADs[cs.AEADID]; !ok {
    				continue
    			}
    			if _, ok := hpke.SupportedKDFs[cs.KDFID]; !ok {
    				continue
    			}
    			validSCS = true
    			break
    		}
    		if !validSCS {
    			continue
    		}
    		if !validDNSName(string(ec.PublicName)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag_old.go

    	for i, line := range lines {
    		line = bytes.TrimSpace(line)
    		if !bytes.HasPrefix(line, slashSlash) {
    			continue
    		}
    		if !bytes.Contains(line, []byte("+build")) {
    			continue
    		}
    		if err := checkLine(string(line), i >= cutoff); err != nil {
    			pass.Reportf(analysisutil.LineStart(tf, i+1), "%s", err)
    			continue
    		}
    	}
    	return nil
    }
    
    // checkLine checks a line that starts with "//" and contains "+build".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top