Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 215 for outlier (0.15 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildSymlinkHandlingIntegrationTest.groovy

            file("in-dir").createDir()
            def outDir = file("out-dir")
            def copy = file("other")
    
            given:
            run("work")
            run("work")
            result.assertTasksSkipped(":work")
    
            when:
            Files.move(outDir.toPath(), copy.toPath(), StandardCopyOption.ATOMIC_MOVE)
            outDir.deleteDir()
            outDir.createLink(copy)
    
            run("work")
    
            /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 14:30:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. fuzzing/fuzzingserver-config.json

    {
      "url": "ws://127.0.0.1:9099",
      "outdir": "./target/fuzzingserver-report",
      "cases": ["*"],
      "exclude-cases": [
        "6.1.1",
        "6.1.2",
        "6.1.3",
        "6.2.1",
        "6.2.2",
        "6.2.3",
        "6.2.4",
        "6.3.1",
        "6.3.2",
        "6.4.1",
        "6.4.2",
        "6.4.3",
        "6.4.4",
        "6.5.1",
        "6.5.2",
        "6.5.3",
        "6.5.4",
        "6.5.5",
        "6.6.1",
        "6.6.2",
        "6.6.3",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Mar 26 02:01:32 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/BUILD

        # copybara:comment_begin(JitRt/Auto fusion depreciated)
        exclude = [
            "auto-fusion.mlir",
            "tf_to_corert_pipeline_cpurt.mlir",
            "outline-cpurt-cluster.mlir",
        ],
        # copybara:comment_end
        features = if_oss(["--path=org_tensorflow/tensorflow/compiler/mlir/tfrt"]),
        size_override = {
            "fallback.mlir": "medium",
        },
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/ConfigurationCacheInstrumentationProcessorTest.groovy

        @Rule
        final TestNameTestDirectoryProvider temporaryFolder = new TestNameTestDirectoryProvider(getClass())
        final TestFile srcDir = temporaryFolder.createDir('src')
        final TestFile outDir = temporaryFolder.createDir('out')
        final TestFile classesDir = temporaryFolder.createDir('classes')
    
        def "code generation is deterministic regardless of type processing order"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. src/crypto/hmac/hmac.go

    			panic(err)
    		}
    	} else {
    		h.outer.Reset()
    		h.outer.Write(h.opad)
    	}
    	h.outer.Write(in[origLen:])
    	return h.outer.Sum(in[:origLen])
    }
    
    func (h *hmac) Write(p []byte) (n int, err error) {
    	return h.inner.Write(p)
    }
    
    func (h *hmac) Size() int      { return h.outer.Size() }
    func (h *hmac) BlockSize() int { return h.inner.BlockSize() }
    
    func (h *hmac) Reset() {
    	if h.marshaled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. cmd/genyaml/gen_kubectl_yaml.go

    	path := "docs/yaml/kubectl"
    	if len(os.Args) == 2 {
    		path = os.Args[1]
    	} else if len(os.Args) > 2 {
    		fmt.Fprintf(os.Stderr, "usage: %s [output directory]\n", os.Args[0])
    		os.Exit(1)
    	}
    
    	outDir, err := genutils.OutDir(path)
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "failed to get output directory: %v\n", err)
    		os.Exit(1)
    	}
    
    	// Set environment variables used by kubectl so the output is consistent,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. src/cmd/covdata/merge.go

    	flag.PrintDefaults()
    	fmt.Fprintf(os.Stderr, "\nExamples:\n\n")
    	fmt.Fprintf(os.Stderr, "  go tool covdata merge -i=dir1,dir2,dir3 -o=outdir\n\n")
    	fmt.Fprintf(os.Stderr, "  \tmerges all files in dir1/dir2/dir3\n")
    	fmt.Fprintf(os.Stderr, "  \tinto output dir outdir\n")
    	Exit(2)
    }
    
    func (m *mstate) Setup() {
    	if *indirsflag == "" {
    		m.Usage("select input directories with '-i' option")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields_test.go

    )
    
    func TestLookupPtrToStruct(t *testing.T) {
    	type Elem struct {
    		Key   string
    		Value string
    	}
    	type Outer struct {
    		Inner []Elem `json:"inner" patchStrategy:"merge" patchMergeKey:"key"`
    	}
    	outer := &Outer{}
    	elemType, patchStrategies, patchMergeKey, err := LookupPatchMetadataForStruct(reflect.TypeOf(outer), "inner")
    	if err != nil {
    		t.Fatal(err)
    	}
    	if elemType != reflect.TypeOf([]Elem{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 22:35:14 UTC 2017
    - 769 bytes
    - Viewed (0)
  9. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/NestedModelRuleDslDetectionIntegrationTest.groovy

    model {
        thing {
            conf {
                println "outer 1"
            }
            someProp.conf {
                println "outer 2"
                // not a rule
                conf { println "inner 1" }
            }
        }
        tasks {
            show(Task) { doLast { println $.thing } }
        }
    }
    '''
    
            expect:
            succeeds "show"
            output.contains("outer 1")
            output.contains("outer 2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. SECURITY.md

    some form of isolation when dealing with untrusted data. As a result, this
    document also outlines what issues we consider as TensorFlow security
    vulnerabilities.
    
    We recognize issues as vulnerabilities only when they occur in scenarios that we
    outline as safe; issues that have a security impact only when TensorFlow is used
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top