Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,102 for mymath (0.22 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/httproute.yaml

    kind: HTTPRoute
    metadata:
      name: my-app
    spec:
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /mypath
        backendRefs:
        - name: my-service-1
          port: 8080
      - matches:
        - path:
            type: PathPrefix
            value: /mypath-012
        backendRefs:
        - name: my-service-2
          port: 8080
      - matches:
        - path:
            type: PathPrefix
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 510 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/DefaultProjectComponentSelectorTest.groovy

            ':myProjectPath2' | false    | false    | false
        }
    
        def "prevents matching of null id"() {
            when:
            ProjectComponentSelector defaultBuildComponentSelector = newSelector(':myPath')
            defaultBuildComponentSelector.matchesStrictly(null)
    
            then:
            Throwable t = thrown(AssertionError)
            assert t.message == 'identifier cannot be null'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. pkg/registry/authorization/util/helpers_test.go

    					User:                  "bob",
    					Groups:                []string{user.AllAuthenticated},
    					NonResourceAttributes: &authorizationapi.NonResourceAttributes{Verb: "get", Path: "/mypath"},
    					Extra:                 map[string]authorizationapi.ExtraValue{"scopes": {"scope-a", "scope-b"}},
    				},
    			},
    			want: authorizer.AttributesRecord{
    				User: &user.DefaultInfo{
    					Name:   "bob",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 16:06:18 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/math.mlir

    Meghna Natraj <******@****.***> 1657816346 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/math.mlir

    Christian Sigg <******@****.***> 1714640622 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/resource/math.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package resource
    
    import (
    	"math/big"
    
    	inf "gopkg.in/inf.v0"
    )
    
    const (
    	// maxInt64Factors is the highest value that will be checked when removing factors of 10 from an int64.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 23 13:07:14 UTC 2020
    - 7.3K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/input/pilot_override_kubernetes.yaml

                    value: |
                      fieldRef:
                        apiVersion: v2
                        fieldPath: metadata.myPath
                  # Deletion of list item
                  - path: spec.template.spec.containers.[name:discovery].env.[name:REVISION]
                  # Deletion of map item
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. test/fixedbugs/bug143.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    type myMap map[string] int;
    
    func f() myMap {
    	m := make(map[string] int);
    	return m
    }
    
    func main() {
    	m := make(myMap);
    	mp := &m;
    
    	{
    		x, ok := m["key"];
    		_, _ = x, ok;
    	}
    	{
    		x, ok := (*mp)["key"];
    		_, _ = x, ok;
    	}
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 647 bytes
    - Viewed (0)
  9. src/internal/coverage/test/roundtrip_test.go

    	// Emit a meta-file...
    	mfpath := filepath.Join(d, "covmeta.hash.0")
    	of, err := os.OpenFile(mfpath, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0666)
    	if err != nil {
    		t.Fatalf("opening covmeta: %v", err)
    	}
    	//t.Logf("meta-file path is %s", mfpath)
    	blobs := createMetaDataBlobs(t, 7)
    	gran := coverage.CtrGranularityPerBlock
    	mfw := encodemeta.NewCoverageMetaFileWriter(mfpath, of)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 21:42:05 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/dsl/DependencyResultSpecTest.groovy

        }
    
        def "does not match for dependencies other than requested ModuleComponentSelector"() {
            expect:
            !new DependencyResultSpec(notation).isSatisfiedBy(newDependency(TestComponentIdentifiers.newSelector(":myPath"), "org.foo", "foo-core", "1.22"))
    
            where:
            notation << ['1.+']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 04 04:36:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top