Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 5,298 for somme (0.34 sec)

  1. tests/test_tutorial/test_websockets/test_tutorial002.py

        with pytest.raises(WebSocketDisconnect):
            with client.websocket_connect("/items/bar/ws?token=some-token") as websocket:
                message = "Message one"
                websocket.send_text(message)
                data = websocket.receive_text()
                assert data == "Session cookie or query token value is: some-token"
                data = websocket.receive_text()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Nov 13 14:26:09 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/group/group_adder_test.go

    			inputUser: &user.DefaultInfo{
    				Name:   "user",
    				Groups: []string{"some-group"},
    			},
    			expectedUser: &user.DefaultInfo{
    				Name:   "user",
    				Groups: []string{"some-group", user.AllAuthenticated},
    			},
    		},
    		{
    			name: "don't double add",
    			inputUser: &user.DefaultInfo{
    				Name:   "user",
    				Groups: []string{user.AllAuthenticated, "some-group"},
    			},
    			expectedUser: &user.DefaultInfo{
    				Name:   "user",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 20:04:50 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/DefaultIvyExtraInfoTest.groovy

        }
    
        def "can get by name and namespace" () {
            given:
            def extraInfo = new DefaultIvyExtraInfo([
                    (new NamespaceId('http://my.extra.info', 'foo')): 'fooValue',
                    (new NamespaceId('http://some.extra.info', 'foo')): 'anotherValue'
            ])
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailureTest.groovy

            given:
            def output = """
    Some message
    
    FAILURE: broken
    
    * Exception is:
    Some.Failure
    """
            def errorOutput = """
    Some error
    """
    
            when:
            def failure = OutputScrapingExecutionFailure.from(output, errorOutput)
    
            then:
            failure.assertOutputContains("Some message")
            failure.assertHasErrorOutput("Some error")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. testing/performance/src/templates/with-verbose-testng/Test.java

                System.out.println("Some test output from ${testClassName}.testOne - " + i);
                System.err.println("Some test error  from ${testClassName}.testOne - " + i);
            }
            assertEquals(production.getProperty(), "value");
        }
    
        @Test
        public void testTwo() {
            for (int i = 0; i < 1000; i++) {
                System.out.println("Some test output from ${testClassName}.testTwo - " + i);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/classpath/InPlaceClasspathBuilderTest.groovy

                it.put("a.class", "bytes".bytes)
                it.put("dir/b.class", "bytes".bytes)
                it.put("some/dir/c.class", "bytes".bytes)
            }
    
            then:
            def zip = new ZipTestFixture(file)
            zip.hasDescendants("a.class", "dir/b.class", "some/dir/c.class")
            zip.hasDirs("dir", "some", "some/dir")
        }
    
        def "overrides previously constructed jar"() {
            def file = tmpDir.file("thing.zip")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:05:09 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/add.pbtxt

    # CHECK:           fetch %[[add]]
    
    # SOME-LABEL: func @main
    # SOME-SAME:  (%[[ARG_0:[a-z0-9]+]]: tensor<10xi32>, %[[ARG_1:[a-z0-9]+]]: tensor<10xi32>) -> tensor<*xi32>
    # SOME-SAME:  control_outputs = ""
    # SOME-SAME:  inputs = "input0,input1"
    # SOME-SAME:  outputs = "Add"
    # SOME:           %[[add:.*]], %[[add_control:.*]] = tf_executor.island wraps "tf.Add"(%[[ARG_0]], %[[ARG_1]])
    # SOME:           fetch %[[add]]
    
    # NONE-LABEL: func @main
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 17 08:38:39 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  8. platforms/software/resources-gcs/src/test/groovy/org/gradle/internal/resource/transport/gcp/gcs/GcsConnectionPropertiesTest.groovy

            where:
            endpoint << ['http://some', 'httP://some', 'httpS://some', 'HTTpS://some']
        }
    
        def "should default invalid disableAuthentication parameter"() {
            expect:
            new GcsConnectionProperties("http://some", null, value).requiresAuthentication()
            then:
            where:
            value << ['foo', 'true-ish', 'false-y', '1']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. test/typeparam/issue50485.dir/a.go

    	return Ap(r.fn, a)
    }
    
    func (r ApplicativeFunctor1[H, HT, A, R]) Ap(a A) Option[R] {
    	return r.ApOption(Some(a))
    }
    
    func Applicative1[A, R any](fn Func1[A, R]) ApplicativeFunctor1[Nil, Nil, A, R] {
    	return ApplicativeFunctor1[Nil, Nil, A, R]{Some(Empty()), Some(fn)}
    }
    
    type ApplicativeFunctor2[H Header[HT], HT, A1, A2, R any] struct {
    	h  Option[H]
    	fn Option[Func1[A1, Func1[A2, R]]]
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_websockets/test_tutorial002_py310.py

        with pytest.raises(WebSocketDisconnect):
            with client.websocket_connect("/items/bar/ws?token=some-token") as websocket:
                message = "Message one"
                websocket.send_text(message)
                data = websocket.receive_text()
                assert data == "Session cookie or query token value is: some-token"
                data = websocket.receive_text()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top