Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for proximate (0.31 sec)

  1. docs/pt/docs/advanced/index.md

    O [Tutorial - Guia de Usuário](../tutorial/index.md){.internal-link target=_blank} deve ser o suficiente para dar a você um tour por todos os principais recursos do **FastAPI**.
    
    Na próxima seção você verá outras opções, configurações, e recursos adicionais.
    
    !!! tip "Dica"
        As próximas seções **não são necessáriamente "avançadas"**
    
        E é possível que para seu caso de uso, a solução esteja em uma delas.
    
    ## Leia o Tutorial primeiro
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/dfs/Referral.java

        }
    
    
        /**
         * @return the rflags
         */
        public final int getRFlags () {
            return this.rflags;
        }
    
    
        /**
         * @return the proximity
         */
        public final int getProximity () {
            return this.proximity;
        }
    
    
        /**
         * @return the altPath
         */
        public final String getAltPath () {
            return this.altPath;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java

            public String toString() {
                return new String( "Referral[" +
                    "version=" + version + ",size=" + size +
                    ",serverType=" + serverType + ",flags=" + flags +
                    ",proximity=" + proximity + ",ttl=" + ttl +
                    ",pathOffset=" + pathOffset + ",altPathOffset=" + altPathOffset +
                    ",nodeOffset=" + nodeOffset + ",path=" + path + ",altPath=" + altPath +
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/injection/injection-image.go

    		// it always overrides the injector logic.
    		if r.Metadata.Annotations["sidecar.istio.io/proxyImage"] != "" {
    			return true
    		}
    
    		variant := resolver.ImageType(r)
    
    		for _, container := range append(slices.Clone(pod.Containers), pod.InitContainers...) {
    			if container.Name != util.IstioProxyName {
    				continue
    			}
    
    			proxyImage, okImage := proxyImageMap[injectionCMName]
    			if !okImage {
    				return true
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/util/in_mesh.go

    	}
    
    	return enabled, ok
    }
    
    func hasIstioProxy(containers []v1.Container) bool {
    	proxyImage := ""
    	for _, container := range containers {
    		if container.Name == IstioProxyName {
    			proxyImage = container.Image
    			break
    		}
    	}
    
    	return proxyImage != ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/injection/injection.go

    			return true
    		}
    
    		if pod.HostNetwork {
    			return true
    		}
    
    		proxyImage := ""
    		for _, container := range append(slices.Clone(pod.Containers), pod.InitContainers...) {
    			if container.Name == util.IstioProxyName {
    				proxyImage = container.Image
    				break
    			}
    		}
    
    		if proxyImage == "" {
    			c.Report(gvk.Pod, msg.NewPodMissingProxy(r, r.Metadata.FullName.String()))
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_lowering_patterns.td

            [(IsStrCompositeAttribute<"approximate", "none"> $attrs)]>;
    
    def LegalizeCompositeApproximateAtenGELU : Pat<
            (MHLO_CompositeOp:$composite
              (variadic $inputs),
              ConstantStrAttr<StrAttr, "aten.gelu.default">, $attrs, $_, $_),
            (TFL_GeluOp $inputs, ConstBoolAttrTrue),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. docs/pt/docs/deployment/index.md

    Existem várias maneiras para fazer isso, dependendo do seu caso específico e das ferramentas que você utiliza.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 322 bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/hello-proxy-override.yaml

    metadata:
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      template:
        metadata:
          annotations:
            sidecar.istio.io/proxyImage: "docker.io/istio/proxy2_debug:unittest"
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 556 bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinGccProducedBinaryInfo.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.binaryinfo
    /**
     * Binary information for GCC produced binaries. It approximate features required by our tests using dumpbin.exe from Visual Studio. It's not the right solution, but it works for most cases.
     */
    class DumpbinGccProducedBinaryInfo extends DumpbinBinaryInfo {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top