Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for locals (0.12 sec)

  1. src/net/http/serve_test.go

    		t.Fatal(err)
    	}
    
    	host := cst.ts.Listener.Addr().String()
    	got := <-ch
    	if addr, ok := got.(net.Addr); !ok {
    		t.Errorf("local addr value = %T; want net.Addr", got)
    	} else if fmt.Sprint(addr) != host {
    		t.Errorf("local addr = %v; want %v", addr, host)
    	}
    }
    
    // https://golang.org/issue/15960
    func TestHandlerSetTransferEncodingChunked(t *testing.T) {
    	setParallel(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                        setBuildServiceConvention(buildServiceName);
                    }
    
                    _CHECKCAST(propType);
                }});
            }
    
            /**
             * Local extensions to {@link MethodVisitorScope}.
             */
            private class LocalMethodVisitorScope extends MethodVisitorScope {
    
                public LocalMethodVisitorScope(MethodVisitor methodVisitor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  3. src/crypto/x509/verify_test.go

    	},
    	{
    		// Test that excluded names are respected.
    		name:          "ExcludedNames",
    		leaf:          excludedNamesLeaf,
    		dnsName:       "bender.local",
    		intermediates: []string{excludedNamesIntermediate},
    		roots:         []string{excludedNamesRoot},
    		currentTime:   1486684488,
    		systemSkip:    true, // does not chain to a system root
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            // is the same as the buildTreePath of the substituted project dependency in the included build.
            // This way we test that you can't do special handling for "local" project dependencies when calculating
            // a transform workspace.
            def includedBuild = new BuildTestFile(file("lib-project"), "lib-project")
            includedBuild.with {
                it.createDir("producer")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    				if !target.IsAMD64() {
    					o = r.Add()
    				}
    				break
    			}
    
    			if target.IsElf() && target.IsARM() {
    				// On ELF ARM, the thread pointer is 8 bytes before
    				// the start of the thread-local data block, so add 8
    				// to the actual TLS offset (r->sym->value).
    				// This 8 seems to be a fundamental constant of
    				// ELF on ARM (or maybe Glibc on ARM); it is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. pkg/apis/core/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.ScaleIO != nil {
    		in, out := &in.ScaleIO, &out.ScaleIO
    		*out = new(ScaleIOPersistentVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Local != nil {
    		in, out := &in.Local, &out.Local
    		*out = new(LocalVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.StorageOS != nil {
    		in, out := &in.StorageOS, &out.StorageOS
    		*out = new(StorageOSPersistentVolumeSource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.ScaleIO != nil {
    		in, out := &in.ScaleIO, &out.ScaleIO
    		*out = new(ScaleIOPersistentVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Local != nil {
    		in, out := &in.Local, &out.Local
    		*out = new(LocalVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.StorageOS != nil {
    		in, out := &in.StorageOS, &out.StorageOS
    		*out = new(StorageOSPersistentVolumeSource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    class RewriteQuantizedDotGeneralOpToTflFullyConnectedOrBatchMatmulOp
        : public OpRewritePattern<stablehlo::DotGeneralOp> {
     public:
      // Sets benefit to 10 to make this pattern more preferred than smaller local
      // transformations like `stablehlo.transpose`->`tfl.transpose`, as this
      // pattern involves `stablehlo.transpose` in some cases.
      explicit RewriteQuantizedDotGeneralOpToTflFullyConnectedOrBatchMatmulOp(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      }
    
      // Sentinel for an unknown dimension size. getTensorType interprets any
      // negative value as an unknown dimension.
      // TODO(jmolloy): Ideally this shouldn't be a local sentinel.
      const int64_t kUnknownDim = -1;
    
      absl::InlinedVector<int64_t, 4> dimensions;
      int32_t rank = context->Rank(handle);
      dimensions.reserve(rank);
      for (int i = 0; i < rank; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. samples/addons/grafana.yaml

    \"datasource\",\"options\":[],\"query\":\"prometheus\",\"queryValue\":\"\",\"refresh\":1,\"regex\":\"\",\"skipUrlSync\":false,\"type\":\"datasource\"},{\"current\":{\"selected\":false,\"text\":\"details.default.svc.cluster.local\",\"value\":\"details.default.svc.cluster.local\"},\"datasource\":{\"type\":\"prometheus\",\"uid\":\"${datasource}\"},\"definition\":\"\",\"hide\":0,\"includeAll\":false,\"label\":\"Service\",\"multi\":false,\"name\":\"service\",\"options\":[],\"query\":\"query_result(su...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top