Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for bin2 (0.1 sec)

  1. tests/integration/pilot/common/routing.go

    	ipCases := []struct {
    		name            string
    		endpoint        string
    		disableSidecar  bool
    		port            echo.Port
    		code            int
    		minIstioVersion string
    	}{
    		// instance IP bind
    		{
    			name:           "instance IP without sidecar",
    			disableSidecar: true,
    			port:           ports.HTTPInstance,
    			code:           http.StatusOK,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        in1.close()
        call1.cancel()
        val call2 = client.newCall(newRequest("/"))
        val response2 = call2.execute()
        val in2 = response2.body.byteStream()
        assertThat(readAscii(in2, 5)).isEqualTo("LMNOP")
        in2.close()
        call2.cancel()
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(0)
        // Connection is pooled!
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                                attributes.attribute(contents, 'bin')
                            }
                        }
                        registerTransform(FileSizer) {
                            from.attribute(contents, 'bin')
                            to.attribute(contents, 'size')
                        }
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
            },
            "azureFile": {
              "$ref": "#/definitions/io.k8s.api.core.v1.AzureFileVolumeSource",
              "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
            },
            "cephfs": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    	if runtime.GOOS == "windows" {
    		// Windows containers doesn't support mount propagation, use private for it.
    		// Refer https://docs.docker.com/storage/bind-mounts/#configure-bind-propagation.
    		return runtimeapi.MountPropagation_PROPAGATION_PRIVATE, nil
    	}
    
    	switch {
    	case mountMode == nil:
    		// PRIVATE is the default
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    }
    
    const Sym32Size = 16
    
    func ST_BIND(info uint8) SymBind { return SymBind(info >> 4) }
    func ST_TYPE(info uint8) SymType { return SymType(info & 0xF) }
    func ST_INFO(bind SymBind, typ SymType) uint8 {
    	return uint8(bind)<<4 | uint8(typ)&0xf
    }
    func ST_VISIBILITY(other uint8) SymVis { return SymVis(other & 3) }
    
    /*
     * ELF64
     */
    
    // ELF64 file header.
    type Header64 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    			// Install cross-compiled binaries to subdirectories of bin.
    			elem = full
    		}
    		if p.Internal.Build.BinDir == "" && cfg.ModulesEnabled {
    			p.Internal.Build.BinDir = modload.BinDir()
    		}
    		if p.Internal.Build.BinDir != "" {
    			// Install to GOBIN or bin of GOPATH entry.
    			p.Target = filepath.Join(p.Internal.Build.BinDir, elem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // CHECK: %[[BITCAST2:.+]] = "tfl.bitcast"(%[[ARG2]]) : (tensor<i64>) -> tensor<1xi64>
    // CHECK: %[[MIN2:.+]] = "tfl.minimum"(%[[BITCAST2]], %[[MAX2]]) : (tensor<1xi64>, tensor<1xi64>) -> tensor<1xi64>
    // CHECK: %[[CONCAT:.+]] = "tfl.concatenation"(%[[MIN1]], %[[MIN2]]) <{axis = 0 : i32, fused_activation_function = "NONE"}> : (tensor<1xi64>, tensor<1xi64>) -> tensor<2xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    // parameter, as a type.  TemplateSel<Tmpl>::Bind<T>::type is defined
    // as the type Tmpl<T>.  This allows us to actually instantiate the
    // template "selected" by TemplateSel<Tmpl>.
    //
    // This trick is necessary for simulating typedef for class templates,
    // which C++ doesn't support directly.
    template <GTEST_TEMPLATE_ Tmpl>
    struct TemplateSel {
      template <typename T>
      struct Bind {
        typedef Tmpl<T> type;
      };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 181.3K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    // parameter, as a type.  TemplateSel<Tmpl>::Bind<T>::type is defined
    // as the type Tmpl<T>.  This allows us to actually instantiate the
    // template "selected" by TemplateSel<Tmpl>.
    //
    // This trick is necessary for simulating typedef for class templates,
    // which C++ doesn't support directly.
    template <GTEST_TEMPLATE_ Tmpl>
    struct TemplateSel {
      template <typename T>
      struct Bind {
        typedef Tmpl<T> type;
      };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
Back to top