Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,836 for continueCh (0.42 sec)

  1. 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)
  2. 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)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/OutputFileChanges.java

                    return SnapshotVisitResult.CONTINUE;
                }
                boolean shouldContinue = visitor.visitChange(
                    changeFactory.apply(relativePath, snapshot)
                );
                return shouldContinue ? SnapshotVisitResult.CONTINUE : SnapshotVisitResult.TERMINATE;
            }) == SnapshotVisitResult.CONTINUE;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. 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)
  5. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner.go

    	for _, secret := range secretList {
    		if secret.Type != v1.SecretTypeServiceAccountToken {
    			continue
    		}
    		if !secret.CreationTimestamp.Time.Before(preserveCreatedOnOrAfter) {
    			continue
    		}
    
    		if secret.DeletionTimestamp != nil {
    			continue
    		}
    
    		// if LastUsedLabelKey does not exist, we think the secret has not been used
    		// since the legacy token starts to track.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. 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)
  7. src/regexp/backtrack.go

    				continue
    			}
    			pos += width
    			pc = inst.Out
    			goto CheckAndLoop
    
    		case syntax.InstRuneAny:
    			r, width := i.step(pos)
    			if r == endOfText {
    				continue
    			}
    			pos += width
    			pc = inst.Out
    			goto CheckAndLoop
    
    		case syntax.InstCapture:
    			if arg {
    				// Finished inst.Out; restore the old value.
    				b.cap[inst.Arg] = pos
    				continue
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. src/internal/fuzz/mutator.go

    		switch m.rand(2) {
    		case 0:
    			// Add a random number
    			if v >= maxValue {
    				continue
    			}
    			if v > 0 && maxValue-v < max {
    				// Don't let v exceed maxValue
    				max = maxValue - v
    			}
    			v += int64(1 + m.rand(int(max)))
    			return v
    		case 1:
    			// Subtract a random number
    			if v <= -maxValue {
    				continue
    			}
    			if v < 0 && maxValue+v < max {
    				// Don't let v drop below -maxValue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_read_for_write.cc

      // Skip result if cluster writes to the same variable via multiple results.
      for (Operation* handle_user : handle.getUsers()) {
        if (handle_user == assign_var) continue;
        auto assign_var_user = dyn_cast<TF::AssignVariableOp>(handle_user);
        if (!assign_var_user) continue;
        if (assign_var_user.getValue().getDefiningOp() == cluster_func)
          return resource;
      }
    
      resource.resource = assign_var.getResource();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 16:54:40 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top