Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for foboo (0.05 sec)

  1. src/bytes/bytes_test.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authorization/path/path_test.go

    		{"foo bar", []string{"/foo", "/bar"}, []string{"/foo", "/bar"}, nil, []string{"/", "", "/foo/", "/bar/", "/fooooo"}, false},
    		{"foo star", []string{"/foo*"}, []string{"/foo", "/foooo"}, nil, []string{"/", "", "/fo", "/bar"}, false},
    		{"star", []string{"/*"}, []string{"/", "", "/foo", "/foooo"}, nil, nil, false},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			a, err := NewAuthorizer(tt.excludedPaths)
    			if err != nil && !tt.wantErr {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/util/MatchersTest.groovy

            and:
            !matchesRegexp(Pattern.compile("foo.*")).matches(noMatch)
    
            where:
            match     | noMatch
            "foo"     | "fo"
            "foo bar" | " foo"
            "fooo"    | "xxxx"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:16:41 UTC 2013
    - 1.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerSpec.groovy

            configurationContainer.findAll { it.name == "foo" } as Set == [] as Set
    
            configurationContainer as List == [compile] as List
    
            when:
            configurationContainer.getByName("fooo")
    
            then:
            thrown(UnknownConfigurationException)
        }
    
        def "configures and finds"() {
            1 * domainObjectContext.identityPath("compile") >> Path.path(":build:compile")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. src/archive/tar/writer_test.go

    	hdr := &Header{
    		Name:     fileName,
    		Size:     4,
    		Typeflag: 0,
    	}
    	if err := tw.WriteHeader(hdr); err != nil {
    		t.Fatalf("Failed to write header: %s", err)
    	}
    	if _, err := tw.Write([]byte("fooo")); err != nil {
    		t.Fatalf("Failed to write the file's data: %s", err)
    	}
    	tw.Close()
    
    	tr := NewReader(&buffer)
    
    	for {
    		header, err := tr.Next()
    		if err == io.EOF {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<2>;
    }
    
    def TF_ResourceApplyProximalAdagradOp : TF_Op<"ResourceApplyProximalAdagrad", []> {
      let summary = [{
    Update '*var' and '*accum' according to FOBOS with Adagrad learning rate.
      }];
    
      let description = [{
    accum += grad * grad
    prox_v = var - lr * grad * (1 / sqrt(accum))
    var = sign(prox_v)/(1+lr*l2) * max{|prox_v|-lr*l1,0}
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top