Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,031 for scouse (0.12 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorBuilder.java

            MavenScope scope;
            if (dependencyType == MavenDependencyType.DEPENDENCY_MANAGEMENT) {
                scope = MavenScope.Compile;
            } else {
                String scopeString = dep.getScope();
                if (scopeString == null || scopeString.length() == 0) {
                    scopeString = getDefaultScope(dep);
                }
    
                // unknown scope, defaulting to 'compile'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientHelper.java

    import org.apache.http.protocol.HttpContext;
    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import javax.annotation.CheckForNull;
    import javax.annotation.Nonnull;
    import javax.annotation.Nullable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/security/simple-oauth2.md

    The spec also states that the `username` and `password` must be sent as form data (so, no JSON here).
    
    ### `scope`
    
    The spec also says that the client can send another form field "`scope`".
    
    The form field name is `scope` (in singular), but it is actually a long string with "scopes" separated by spaces.
    
    Each "scope" is just a string (without spaces).
    
    They are normally used to declare specific security permissions, for example:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.event
    
    import com.google.common.reflect.ClassPath
    import org.gradle.internal.service.scopes.EventScope
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.StatefulListener
    import org.gradle.test.fixtures.concurrent.ConcurrentSpec
    import spock.lang.Ignore
    import spock.lang.Issue
    import spock.lang.Timeout
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. chainable_api.go

    	scopes := db.Statement.scopes
    	db.Statement.scopes = nil
    	for _, scope := range scopes {
    		db = scope(db)
    	}
    	return db
    }
    
    // Preload preload associations with given conditions
    //
    //	// get all users, and preload all non-cancelled orders
    //	db.Preload("Orders", "state NOT IN (?)", "cancelled").Find(&users)
    func (db *DB) Preload(query string, args ...interface{}) (tx *DB) {
    	tx = db.getInstance()
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_security/test_tutorial005_an_py39.py

        client = TestClient(app)
        return client
    
    
    def get_access_token(
        *, username="johndoe", password="secret", scope=None, client: TestClient
    ):
        data = {"username": username, "password": password}
        if scope:
            data["scope"] = scope
        response = client.post("/token", data=data)
        content = response.json()
        access_token = content.get("access_token")
        return access_token
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_security/test_tutorial005.py

        fake_users_db,
        get_password_hash,
        verify_password,
    )
    
    client = TestClient(app)
    
    
    def get_access_token(username="johndoe", password="secret", scope=None):
        data = {"username": username, "password": password}
        if scope:
            data["scope"] = scope
        response = client.post("/token", data=data)
        content = response.json()
        access_token = content.get("access_token")
        return access_token
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. test/live.go

    }
    
    // confusion about the _ result used to cause spurious "live at entry to f6: _".
    
    func f6() (_, y string) {
    	y = "hello"
    	return
    }
    
    // confusion about addressed results used to cause "live at entry to f7: x".
    
    func f7() (x string) { // ERROR "stack object x string"
    	_ = &x
    	x = "hello"
    	return
    }
    
    // ignoring block returns used to cause "live at entry to f8: x, y".
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DependencyInjectingInstantiatorTest.groovy

            then:
            ObjectInstantiationException e = thrown()
            e.cause instanceof IllegalArgumentException
            e.cause.message == "Class DependencyInjectingInstantiatorTest.NonStatic is a non-static inner class, it probably captures a variable from the outer scope."
        }
    
        def "fails when class has multiple constructors and none are annotated"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 04:41:06 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/assignments.go

    	// non-constant value except for the predeclared identifier nil may
    	// be assigned to it."
    	if T == nil {
    		return
    	}
    
    	cause := ""
    	if ok, code := x.assignableTo(check, T, &cause); !ok {
    		if cause != "" {
    			check.errorf(x, code, "cannot use %s as %s value in %s: %s", x, T, context, cause)
    		} else {
    			check.errorf(x, code, "cannot use %s as %s value in %s", x, T, context)
    		}
    		x.mode = invalid
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top