Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 259 for nextch (0.1 sec)

  1. src/runtime/mstats.go

    	OtherSys uint64
    
    	// Garbage collector statistics.
    
    	// NextGC is the target heap size of the next GC cycle.
    	//
    	// The garbage collector's goal is to keep HeapAlloc ≤ NextGC.
    	// At the end of each GC cycle, the target for the next cycle
    	// is computed based on the amount of reachable data and the
    	// value of GOGC.
    	NextGC uint64
    
    	// LastGC is the time the last garbage collection finished, as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/executor_island_materialize_const.mlir

    // eliminating the graph entirely.
        %2:2 = tf_executor.island(%1#1) {
          %4 = "tf.opB"(%1#0) : (tensor<f32>) -> tensor<f32>
          tf_executor.yield %4 : tensor<f32>
        }
        tf_executor.fetch %2#0 : tensor<f32>
      }
      func.return %0 : tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 854 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/aliasing_arg_attr.mlir

          %1:3 = tf_executor.island wraps "tf.IdentityN"(%arg0, %arg1) {T = ["tfdtype$DT_FLOAT", "tfdtype$DT_INT32"], device = "", name = "identity"} : (tensor<*xf32>, tensor<2x4x6x8xi32>) -> (tensor<*xf32>, tensor<2x4x6x8xi32>)
          tf_executor.fetch %1#0, %1#1 : tensor<*xf32>, tensor<2x4x6x8xi32>
        }
        func.return %0#0, %0#1 : tensor<*xf32>, tensor<2x4x6x8xi32>
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 958 bytes
    - Viewed (0)
  4. .github/workflows/codeql-analysis.yml

        strategy:
          fail-fast: false
          matrix:
            language: ['java', 'javascript']
    
        steps:
        - name: Checkout repository
          uses: actions/checkout@v4
          with:
            fetch-depth: 2
    
        - name: Initialize CodeQL
          uses: github/codeql-action/init@v1
          with:
            languages: ${{ matrix.language }}
    
        - name: Set up JDK 17
          uses: actions/setup-java@v4
          with:
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/tf_identity_n.mlir

        tf_executor.fetch %2#0 : tensor<2x3xi32>
      }
      func.return %graph : tensor<2x3xi32>
    }
    
    // CHECK:        name: "MyIdentityN"
    // CHECK-NEXT:   op: "IdentityN"
    // CHECK-NEXT:   input: "Const0"
    // CHECK-NEXT:   input: "Const1"
    // CHECK-NEXT:   attr {
    // CHECK-NEXT:     key: "T"
    // CHECK-NEXT:     value {
    // CHECK-NEXT:       list {
    // CHECK-NEXT:         type: DT_INT32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 1014 bytes
    - Viewed (0)
  6. tests/integration/pilot/revisions/revision_tag_test.go

    					deployment.New(t).WithConfig(echo.Config{
    						Service:   "revision-tag",
    						Namespace: revTagNs,
    					}).BuildOrFail(t)
    
    					fetch := kubetest.NewSinglePodFetch(t.Clusters().Default(),
    						revTagNs.Name(),
    						fmt.Sprintf("app=%s", "revision-tag"))
    					pods, err := fetch()
    					if err != nil {
    						t.Fatalf("error fetching pods: %v", err)
    					}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. samples/crawler/src/main/java/okhttp3/sample/Crawler.java

          String originalName = currentThread.getName();
          currentThread.setName("Crawler " + url);
          try {
            fetch(url);
          } catch (IOException e) {
            System.out.printf("XXX: %s %s%n", url, e);
          } finally {
            currentThread.setName(originalName);
          }
        }
      }
    
      public void fetch(HttpUrl url) throws IOException {
        // Skip hosts that we've visited many times.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Aug 12 07:26:27 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/function-resource-args-handle-info.mlir

    // CHECK-NEXT:   value {
    // CHECK-NEXT:     list {
    // CHECK-NEXT:       shape {
    // CHECK-NEXT:         dim {
    // CHECK-NEXT:           size: 8
    // CHECK-NEXT:         }
    // CHECK-NEXT:         dim {
    // CHECK-NEXT:           size: 1
    // CHECK-NEXT:         }
    // CHECK-NEXT:       }
    // CHECK-NEXT:     }
    
    // CHECK:        key: "index"
    // CHECK-NEXT:   value {
    // CHECK-NEXT:     i: 0
    // CHECK-NEXT:   }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    		httpServer = func(args *plugin.HTTPServerArgs) error {
    			return o.HTTPServer(((*HTTPServerArgs)(args)))
    		}
    	}
    	return &plugin.Options{
    		Writer:        o.Writer,
    		Flagset:       o.Flagset,
    		Fetch:         o.Fetch,
    		Sym:           sym,
    		Obj:           obj,
    		UI:            o.UI,
    		HTTPServer:    httpServer,
    		HTTPTransport: o.HTTPTransport,
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go

    	Uid  uint32
    	Gid  uint32
    	Cuid uint32
    	Cgid uint32
    	Mode uint16
    	_    uint16
    	_    int32
    }
    type SysvShmDesc struct {
    	Perm   SysvIpcPerm
    	Segsz  uint64
    	Lpid   int32
    	Cpid   int32
    	Nattch uint16
    	_      [34]byte
    }
    
    const (
    	IPC_CREAT   = 0x200
    	IPC_EXCL    = 0x400
    	IPC_NOWAIT  = 0x800
    	IPC_PRIVATE = 0x0
    )
    
    const (
    	IPC_RMID = 0x0
    	IPC_SET  = 0x1
    	IPC_STAT = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top