Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for central (0.26 sec)

  1. src/cmd/trace/testdata/go122.test

    String id=182
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mheap.go"
    String id=183
    	data="runtime.(*mcentral).grow"
    String id=184
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mcentral.go"
    String id=185
    	data="runtime.(*mcentral).cacheSpan"
    String id=186
    	data="runtime.(*mcache).refill"
    String id=187
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/asmz.go

    	op_LCGR    uint32 = 0xB903 // FORMAT_RRE        LOAD COMPLEMENT (64)
    	op_LCR     uint32 = 0x1300 // FORMAT_RR         LOAD COMPLEMENT (32)
    	op_LCTL    uint32 = 0xB700 // FORMAT_RS1        LOAD CONTROL (32)
    	op_LCTLG   uint32 = 0xEB2F // FORMAT_RSY1       LOAD CONTROL (64)
    	op_LCXBR   uint32 = 0xB343 // FORMAT_RRE        LOAD COMPLEMENT (extended BFP)
    	op_LCXR    uint32 = 0xB363 // FORMAT_RRE        LOAD COMPLEMENT (extended HFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  4. cmd/metrics-v2.go

    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

          if [[ -z "${GCP_IMAGE_VERIFICATION_URL:-}" ]]; then
            1>&2 echo "The ImagePolicyWebhook admission control plugin was requested, but GCP_IMAGE_VERIFICATION_URL was not provided."
            exit 1
          fi
    
          1>&2 echo "ImagePolicyWebhook admission control plugin requested.  Configuring it to point at ${GCP_IMAGE_VERIFICATION_URL}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                        resolutionStrategy.eachDependency {
                            switch (it.requested.name) {
                               case 'foo':
                                  it.because('because I am in control').useVersion('2.0')
                                  break
                               case 'bar':
                                  it.because('why not?').useTarget('org.test:bar:2.0')
                                  break
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    // filter tensor format for TFLite convolution. The following transformations
    // are supported:
    //
    // Depthwise case (`feature_group_count` > 1)
    //   * Permutates given filter to `[i, 0, 1, o]` format.
    // General convolution (`feature_group_count` = 1)
    //   * Permutates given filter to `[o, 0, 1, i]` format.
    // Using TransposeOp doesn't work because the quantized dimension
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    	if err := module.CheckFilePath(name); err != nil {
    		return true
    	}
    	switch name {
    	// Empty string should be impossible but make it bad.
    	case "":
    		return true
    	// Version control directories won't be present in module.
    	case ".bzr", ".hg", ".git", ".svn":
    		return true
    	}
    	return false
    }
    
    // vcsStatusCache maps repository directories (string)
    // to their VCS information.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func ControlService(service Handle, control uint32, status *SERVICE_STATUS) (err error) {
    	r1, _, e1 := syscall.Syscall(procControlService.Addr(), 3, uintptr(service), uintptr(control), uintptr(unsafe.Pointer(status)))
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.cc

    // `src_inputs[i]` will have that input replaced with `dst_inputs[i]`.  `prefix`
    // will be prepended to copied node names. `control_deps` are nodes in
    // `dst_graph` that the copied `src_graph` nodes will have control dependencies
    // on. `return_nodes` are nodes in `src_graph`, and the new corresponding nodes
    // in `dst_graph` will be returned. `return_nodes` must be non-null.
    Status CopyGraph(Graph* src_graph, Graph* dst_graph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top