Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 88 for nextch (0.1 sec)

  1. .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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/trace/jsontrace_test.go

    	hms := heapMetrics(data)
    	var nonZeroAllocated, nonZeroNextGC bool
    	for _, hm := range hms {
    		if hm.Allocated > 0 {
    			nonZeroAllocated = true
    		}
    		if hm.NextGC > 0 {
    			nonZeroNextGC = true
    		}
    	}
    
    	if !nonZeroAllocated {
    		t.Errorf("nonZeroAllocated=%v, want true", nonZeroAllocated)
    	}
    	if !nonZeroNextGC {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. cmd/tier-sweeper.go

    )
    
    // objSweeper determines if a transitioned object needs to be removed from the remote tier.
    // A typical usage would be like,
    // os := newObjSweeper(bucket, object)
    // // Perform a ObjectLayer.GetObjectInfo to fetch object version information
    // goiOpts := os.GetOpts()
    // gerr := objAPI.GetObjectInfo(ctx, bucket, object, goiOpts)
    //
    //	if gerr == nil {
    //	   os.SetTransitionState(goi)
    //	}
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 17 05:09:58 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/gotoolchain_modcmds.txt

    env TESTGO_VERSION=go1.21.0
    env TESTGO_VERSION_SWITCH=switch
    
    # If the main module's go.mod file lists a version lower than the version
    # required by its dependencies, the commands that fetch and diagnose the module
    # graph (such as 'go mod graph' and 'go mod verify') should fail explicitly:
    # they can't interpret the graph themselves, and they aren't allowed to update
    # the go.mod file to record a specific, stable toolchain version that can.
    
    ! go mod verify
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/tf_tpu_embedding_ops.mlir

    // CHECK-NEXT:            size: 256
    // CHECK-NEXT:          }
    // CHECK-NEXT:        }
    // CHECK-NEXT:      }
    // CHECK-NEXT:    }
    // CHECK-NEXT:  }
    // CHECK-NEXT:  attr {
    // CHECK-NEXT:    key: "config"
    // CHECK-NEXT:    value {
    // CHECK-NEXT:      s: "test_config_recv_embedding"
    // CHECK-NEXT:    }
    // CHECK-NEXT:  }
    // CHECK-NEXT:  attr {
    // CHECK-NEXT:    key: "num_outputs"
    // CHECK-NEXT:    value {
    // CHECK-NEXT:      i: 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top