Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 129 for Forked (0.29 sec)

  1. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        if (input_type.getDimSize(3) % filter_type.getDimSize(2) != 0) {
          return failure();
        }
    
        // TensorFlow convolution op only has two inputs, while the TFLite one has
        // three, with the bias vector marked as optional. However, TOCO has a
        // dedicated pass, EnsureBiasVectors, to create default bias vectors for all
        // those missing. So we model TFLite convolution op as requiring three
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	for i := 0; i < nodeUpdateWorkerSize; i++ {
    		// Thanks to "workqueue", each worker just need to get item from queue, because
    		// the item is flagged when got from queue: if new event come, the new item will
    		// be re-queued until "Done", so no more than one worker handle the same item and
    		// no event missed.
    		go wait.UntilWithContext(ctx, nc.doNodeProcessingPassWorker, time.Second)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    				// holding, and does a synchronous net.Conn.Close.
    				go pconn.closeConnIfStillIdle()
    			}
    			if pconn.isBroken() || tooOld {
    				// If either persistConn.readLoop has marked the connection
    				// broken, but Transport.removeIdleConn has not yet removed it
    				// from the idle list, or if this persistConn is too old (it was
    				// idle too long), then ignore it and look for another. In both
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    			// Relocation must be ordered by address, so create a list of sorted indices.
    			relocs := ldr.Relocs(s)
    			sorted := make([]int, relocs.Count())
    			for i := 0; i < relocs.Count(); i++ {
    				sorted[i] = i
    			}
    			sort.Slice(sorted, func(i, j int) bool {
    				return relocs.At(sorted[i]).Off() < relocs.At(sorted[j]).Off()
    			})
    
    			for _, ri := range sorted {
    				r := relocs.At(ri)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DIREG_DRV  DIREG = 0x00000002 // Open/Create/Delete driver key
    	DIREG_BOTH DIREG = 0x00000004 // Delete both driver and Device key
    )
    
    // SPDRP specifies device registry property codes
    // (Codes marked as read-only (R) may only be used for
    // SetupDiGetDeviceRegistryProperty)
    //
    // These values should cover the same set of registry properties
    // as defined by the CM_DRP codes in cfgmgr32.h.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    _Decomposes ReduceDataset op into dataset operations._
    
      Decomposes ReduceDataset op into a while loop that iterates the dataset and calls
      into the reduction function.  This decomposition is only done if the
      ReduceDataset op is marked for compilation with the _xla_compile_device_type
      attribute.
    
      For example, for the following function the ReduceDataset op:
    
      ```mlir
      func.func @single_state_single_dataset_type_no_arguments(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	VADDPS.BCST 2032(DX), Z28, Z29       // 62611c5058aaf0070000
    	VADDPS.BCST 2032(DX)(AX*2), Z0, Z29  // 62617c5858ac42f0070000
    	VADDPS.BCST 2032(DX)(AX*2), Z1, Z29  // 6261745858ac42f0070000
    	// Forced EVEX encoding due to suffixes.
    	VADDPD.BCST 2032(DX), X0, X0 // 62f1fd185882f0070000
    	VADDPD.BCST 2032(DX), Y0, Y0 // 62f1fd385882f0070000
    	// Test new Z-cases one-by-one.
    	//
    	// Zevex_i_r_k_rm.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 57.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            parsePom()
    
            then:
            metadata.id == componentId('group-one', 'artifact-one', 'version-one')
            metadata.dependencies.empty
        }
    
        def "fails when POM is not well formed XML"() {
            given:
            pomFile << """
    <project>
        <modelVersion
    </project>
    """
    
            when:
            parseMetaData()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

          "http://[0.0.0.0:0:0:0:0:0:1]/",
          "Invalid URL host: \"[0.0.0.0:0:0:0:0:0:1]\"",
        )
      }
    
      @Test
      fun hostIpv6WithIncompleteIpv4Suffix() {
        // To Chrome & Safari these are well-formed; Firefox disagrees. (We're consistent with Firefox).
        assertInvalid(
          "http://[0:0:0:0:0:1:255.255.255.]/",
          "Invalid URL host: \"[0:0:0:0:0:1:255.255.255.]\"",
        )
        assertInvalid(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  10. src/main/webapp/css/font-awesome.min.css

    t:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
Back to top