Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,919 for sBoxes (0.13 sec)

  1. subprojects/composite-builds/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    Alex Semin <******@****.***> 1716373676 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 53 bytes
    - Viewed (0)
  2. platforms/ide/problems/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    Alex Semin <******@****.***> 1716373676 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 55 bytes
    - Viewed (0)
  3. platforms/ide/tooling-api-builders/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    Alex Semin <******@****.***> 1716373676 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 67 bytes
    - Viewed (0)
  4. pilot/pkg/config/aggregate/config.go

    		config := store.Get(typ, name, namespace)
    		if config != nil {
    			return config
    		}
    	}
    	return nil
    }
    
    // List all configs in the stores.
    func (cr *store) List(typ config.GroupVersionKind, namespace string) []config.Config {
    	stores := cr.stores[typ]
    	if len(stores) == 0 {
    		return nil
    	}
    
    	var (
    		configs      []config.Config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/cluster_scoping_pass_test.cc

        TF_EXPECT_OK(GraphDefBuilderToGraph(builder, graph.get()));
      }
    
      TF_ASSERT_OK(ClusterScoping(&graph));
    
      auto scopes = GetXlaInternalScopes(*graph);
      EXPECT_NE(scopes["add0"], scopes["add1"]);
      EXPECT_EQ(scopes["add0"], scopes["relu0"]);
      EXPECT_EQ(scopes["add1"], scopes["relu1"]);
    }
    
    TEST(XlaCompilationTest, StagePipelinePreservedAndInitialScopesRespected) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 29 16:20:48 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  6. docs_src/security/tutorial005_py310.py

            token_scopes = payload.get("scopes", [])
            token_data = TokenData(scopes=token_scopes, username=username)
        except (InvalidTokenError, ValidationError):
            raise credentials_exception
        user = get_user(fake_users_db, username=token_data.username)
        if user is None:
            raise credentials_exception
        for scope in security_scopes.scopes:
            if scope not in token_data.scopes:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. docs_src/security/tutorial005_py39.py

            token_scopes = payload.get("scopes", [])
            token_data = TokenData(scopes=token_scopes, username=username)
        except (InvalidTokenError, ValidationError):
            raise credentials_exception
        user = get_user(fake_users_db, username=token_data.username)
        if user is None:
            raise credentials_exception
        for scope in security_scopes.scopes:
            if scope not in token_data.scopes:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. tests/test_dependency_security_overrides.py

        return "john", required_scopes.scopes
    
    
    def get_user_override(required_scopes: SecurityScopes):
        return "alice", required_scopes.scopes
    
    
    def get_data():
        return [1, 2, 3]
    
    
    def get_data_override():
        return [3, 4, 5]
    
    
    @app.get("/user")
    def read_user(
        user_data: Tuple[str, List[str]] = Security(get_user, scopes=["foo", "bar"]),
        data: List[int] = Depends(get_data),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 14 15:54:46 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  9. docs_src/security/tutorial005.py

            token_scopes = payload.get("scopes", [])
            token_data = TokenData(scopes=token_scopes, username=username)
        except (InvalidTokenError, ValidationError):
            raise credentials_exception
        user = get_user(fake_users_db, username=token_data.username)
        if user is None:
            raise credentials_exception
        for scope in security_scopes.scopes:
            if scope not in token_data.scopes:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. docs_src/security/tutorial005_an.py

            token_scopes = payload.get("scopes", [])
            token_data = TokenData(scopes=token_scopes, username=username)
        except (InvalidTokenError, ValidationError):
            raise credentials_exception
        user = get_user(fake_users_db, username=token_data.username)
        if user is None:
            raise credentials_exception
        for scope in security_scopes.scopes:
            if scope not in token_data.scopes:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top