Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 276 for detective (0.22 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/freeze_variables.mlir

        "tf.AssignVariableOp"(%handle, %0) : (tensor<!tf_type.resource<tensor<0xf32>>>, tensor<0xf32>) -> ()
        // CHECK: "tf.VarHandleOp"
        func.return
      }
    }
    
    // -----
    
    // Test mutation detection propagates across function calls.
    
    module {
      func.func @f() -> tensor<0xf32> {
        // CHECK: "tf.VarHandleOp"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  2. src/runtime/crash_test.go

    	}
    }
    
    func TestCrashHandler(t *testing.T) {
    	testCrashHandler(t, false)
    }
    
    func testDeadlock(t *testing.T, name string) {
    	// External linking brings in cgo, causing deadlock detection not working.
    	testenv.MustInternalLink(t, false)
    
    	output := runTestProg(t, "testprog", name)
    	want := "fatal error: all goroutines are asleep - deadlock!\n"
    	if !strings.HasPrefix(output, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    }
    
    // fieldValidation checks that the field validation feature is enabled
    // and returns a valid directive of either
    // - Ignore
    // - Warn (default)
    // - Strict
    func fieldValidation(directive string) string {
    	if directive == "" {
    		return metav1.FieldValidationWarn
    	}
    	return directive
    }
    
    // parseYAMLWarnings takes the strict decoding errors from the yaml decoder's output
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  4. api/go1.21.txt

    pkg go/build, type Directive struct #56986
    pkg go/build, type Directive struct, Pos token.Position #56986
    pkg go/build, type Directive struct, Text string #56986
    pkg go/build, type Package struct, Directives []Directive #56986
    pkg go/build, type Package struct, TestDirectives []Directive #56986
    pkg go/build, type Package struct, XTestDirectives []Directive #56986
    pkg go/token, method (*File) Lines() []int #57708
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 09:39:17 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    }
    
    // formatState holds the parsed representation of a printf directive such as "%3.*[4]d".
    // It is constructed by parsePrintfVerb.
    type formatState struct {
    	verb     rune   // the format verb: 'd' for "%d"
    	format   string // the full format directive from % through verb, "%.3d".
    	name     string // Printf, Sprintf etc.
    	flags    []byte // the list of # + etc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/model/CIBuildModel.kt

            timeout = 420,
            channel = "experiments"
        ),
        flakinessDetection(
            displayName = "Performance Test Flakiness Detection",
            timeout = 600,
            defaultBaselines = "flakiness-detection-commit",
            channel = "flakiness-detection",
            extraParameters = "--checks none --rerun --cross-version-only"
        ),
        historical(
            displayName = "Historical Performance Test",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

            PreparedStatement statement = connection.prepareStatement(sql);
            statement.setString(1, "flakiness-detection" + os.getChannelSuffix() + "-master");
            statement.setString(2, "flakiness-detection" + os.getChannelSuffix() + "-release");
            statement.setTimestamp(3, timestamp);
            return statement;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

      @get:JvmName("maxAgeSeconds") val maxAgeSeconds: Int,
      /**
       * The "s-maxage" directive is the max age for shared caches. Not to be confused with "max-age"
       * for non-shared caches, As in Firefox and Chrome, this directive is not honored by this cache.
       */
      @get:JvmName("sMaxAgeSeconds") val sMaxAgeSeconds: Int,
      val isPrivate: Boolean,
      val isPublic: Boolean,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/stmt0.go

    	}
    
    	type T int
    	type F float64
    	type S string
    	type B bool
    	var i interface{}
    	switch i {
    	case nil:
    	case nil: // no duplicate detection
    	case (*int)(nil):
    	case (*int)(nil): // do duplicate detection
    	case 1:
    	case byte(1):
    	case int /* ERROR "duplicate case" */ (1):
    	case T(1):
    	case 1.0:
    	case F(1.0):
    	case F /* ERROR "duplicate case" */ (1.0):
    	case "hello":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/garbagecollector.go

    		deps := item.getDependents()
    		for _, dep := range deps {
    			if dep.isDeletingDependents() {
    				// this circle detection has false positives, we need to
    				// apply a more rigorous detection if this turns out to be a
    				// problem.
    				// there are multiple workers run attemptToDeleteItem in
    				// parallel, the circle detection can fail in a race condition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top