Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,042 for inter (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    signal over the inner-most dimension of `input`.
    
    The inner-most dimension of `input` is assumed to be the result of `RFFT`: the
    `fft_length / 2 + 1` unique components of the DFT of a real-valued signal. If
    `fft_length` is not provided, it is computed from the size of the inner-most
    dimension of `input` (`fft_length = 2 * (inner - 1)`). If the FFT length used to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio_test.go

    	extendedResources1 := map[string]int64{
    		"intel.com/foo": 4,
    		"intel.com/bar": 8,
    	}
    	extendedResources2 := map[string]int64{
    		"intel.com/foo": 8,
    		"intel.com/bar": 4,
    	}
    
    	extendedResourcePod1 := map[v1.ResourceName]string{
    		"intel.com/foo": "2",
    		"intel.com/bar": "2",
    	}
    	extendedResourcePod2 := map[v1.ResourceName]string{
    		"intel.com/foo": "4",
    		"intel.com/bar": "2",
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/match/match_test.go

    			name: "empty map at depth = 1",
    			given: func() Mapper {
    				// root (dest port)
    				//   15001:
    				//     inner (dest ip):
    				//       <no matches>
    				//       fallback: chain
    				inner := NewDestinationIP()
    				inner.OnNoMatch = ToChain("chain")
    
    				root := NewDestinationPort()
    				root.Map["15001"] = ToMatcher(inner.Matcher)
    				return root
    			},
    			want: func() *matcher.Matcher {
    				// dest port
    				// 15001: chain
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorInnerClassTest.groovy

        def "should not remove #modifier inner class if no API is declared"() {
            given:
            def api = toApi 'A': """
                public class A {
                   $modifier class Inner {
                      public void foo() {}
                   }
                }
            """
    
            when:
            def outer = api.classes.A
            def inner = api.classes['A$Inner']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// combination of signer name and a label selector.
    	//
    	// Kubelet performs aggressive normalization of the PEM contents written
    	// into the pod filesystem.  Esoteric PEM features such as inter-block
    	// comments and block headers are stripped.  Certificates are deduplicated.
    	// The ordering of certificates within the file is arbitrary, and Kubelet
    	// may change the order over time.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

            }
        }
    
        inner class AnonymousInitializerBuilder {
            fun buildClassInitializer(firSymbol: FirAnonymousInitializerSymbol): KaClassInitializerSymbol {
                return symbolsCache.cache(firSymbol) { KaFirClassInitializerSymbol(firSymbol, analysisSession) }
            }
        }
    
        inner class TypeBuilder {
            fun buildKtType(coneType: ConeKotlinType): KaType {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/compilerPluginUsage.txt

        // source: 'fragment.kt'
        enclosing method CodeFragment.run()V
        inner (local) class CodeFragment$run$Bar Bar
        inner (local) class CodeFragment$run$Foo Foo
        public method <init>(): void
    }
    
    public class CodeFragment$run$Foo {
        // source: 'fragment.kt'
        enclosing method CodeFragment.run()V
        inner (local) class CodeFragment$run$Foo Foo
        public method <init>(): void
        public method call(): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 707 bytes
    - Viewed (0)
  8. pkg/scheduler/testing/wrappers.go

    	return &ContainerWrapper{v1.Container{}}
    }
    
    // Obj returns the inner Container.
    func (c *ContainerWrapper) Obj() v1.Container {
    	return c.Container
    }
    
    // Name sets `n` as the name of the inner Container.
    func (c *ContainerWrapper) Name(n string) *ContainerWrapper {
    	c.Container.Name = n
    	return c
    }
    
    // Image sets `image` as the image of the inner Container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

            },
            "required": [
              "pdID"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.PodAffinity": {
            "description": "Pod affinity is a group of inter pod affinity scheduling rules.",
            "properties": {
              "preferredDuringSchedulingIgnoredDuringExecution": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/RelativePathTrackerTest.groovy

            name == "first"
            tracker.root
            tracker.segments.empty
            tracker.toRelativePath() == ""
        }
    
        def "can enter and leave second level"() {
            given:
            tracker.enter("root")
            tracker.enter("first")
            when:
            tracker.enter("second")
            then:
            !tracker.root
            tracker.segments as List == ["first", "second"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top