Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 673 for impacted (0.18 sec)

  1. src/internal/types/testdata/check/importdecl0/importdecl0a.go

    	// reflect defines a type "flag" which shows up in the gc export data
    	"reflect"
    	. /* ERROR "imported and not used" */ "reflect"
    )
    
    import "math" /* ERROR "imported and not used" */
    import m /* ERROR "imported as m and not used" */ "math"
    import _ "math"
    
    import (
    	"math/big" /* ERROR "imported and not used" */
    	b /* ERROR "imported as b and not used" */ "math/big"
    	_ "math/big"
    )
    
    import "fmt"
    import f1 "fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_test.txt

    # 'go get -t' should consider test dependencies of the named package.
    cp go.mod.empty go.mod
    go get -t m/a
    grep 'rsc.io/quote v1.5.2$' go.mod
    
    # 'go get -t' should not consider test dependencies of imported packages,
    # including packages imported from tests.
    cp go.mod.empty go.mod
    go get -t m/b
    ! grep rsc.io/quote go.mod
    
    # 'go get -t -u' should update test dependencies of the named package.
    cp go.mod.empty go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  3. pkg/registry/rbac/validation/policy_compact.go

    				simpleRules[resource] = rule.DeepCopy()
    			}
    		} else {
    			compacted = append(compacted, rule)
    		}
    	}
    
    	// Once we've consolidated the simple resource rules, add them to the compacted list
    	for _, simpleRule := range simpleRules {
    		compacted = append(compacted, *simpleRule)
    	}
    
    	return compacted, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  4. docs/en/docs/reference/middleware.md

    ::: fastapi.middleware.cors.CORSMiddleware
    
    It can be imported from `fastapi`:
    
    ```python
    from fastapi.middleware.cors import CORSMiddleware
    ```
    
    ::: fastapi.middleware.gzip.GZipMiddleware
    
    It can be imported from `fastapi`:
    
    ```python
    from fastapi.middleware.gzip import GZipMiddleware
    ```
    
    ::: fastapi.middleware.httpsredirect.HTTPSRedirectMiddleware
    
    It can be imported from `fastapi`:
    
    ```python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 991 bytes
    - Viewed (0)
  5. src/README.vendor

    Use caution when passing '-u' to 'go get'. The '-u' flag updates
    modules providing all transitively imported packages, not only
    the module providing the target package.
    
    Note that 'go mod vendor' only copies packages that are transitively
    imported by packages in the current module. If a new package is needed,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/go/types/resolver_test.go

    	_, err := conf.Check("testResolveIdents", fset, files, &Info{Defs: defs, Uses: uses})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// check that all packages were imported
    	for _, name := range pkgnames {
    		if !importer.imported[name] {
    			t.Errorf("package %s not imported", name)
    		}
    	}
    
    	// check that qualified identifiers are resolved
    	for _, f := range files {
    		ast.Inspect(f, func(n ast.Node) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/firUtils.kt

    }
    
    /**
     * @receiver A symbol that needs to be imported
     * @param useSiteSession A use-site fir session.
     * @return An [FqName] by which this symbol can be imported (if it is possible)
     */
    internal fun FirCallableSymbol<*>.computeImportableName(useSiteSession: FirSession): FqName? {
        if (callableId.isLocal) return null
    
        // SAM constructors are synthetic, but can be imported
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/resolver_test.go

    	_, err := conf.Check("testResolveIdents", files, &Info{Defs: defs, Uses: uses})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// check that all packages were imported
    	for _, name := range pkgnames {
    		if !importer.imported[name] {
    			t.Errorf("package %s not imported", name)
    		}
    	}
    
    	// check that qualified identifiers are resolved
    	for _, f := range files {
    		syntax.Inspect(f, func(n syntax.Node) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. pkg/registry/rbac/validation/policy_compact_test.go

    			continue
    		}
    		if covers, missing := validation.Covers(rules, compacted); !covers {
    			t.Errorf("%s: original rules did not cover compacted rules. missing: %#v", k, missing)
    			continue
    		}
    
    		sort.Stable(rbacv1helpers.SortableRuleSlice(compacted))
    		sort.Stable(rbacv1helpers.SortableRuleSlice(tc.Expected))
    		if !reflect.DeepEqual(compacted, tc.Expected) {
    			t.Errorf("%s: Expected\n%#v\ngot\n%#v", k, tc.Expected, compacted)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 16:51:16 UTC 2020
    - 9.5K bytes
    - Viewed (0)
  10. ci/official/wheel_test/README.md

    ### test_import_api_packages
    
    This Python test verifies whether the API v2 packages can be imported from the
    current build. It utilizes the `_api/v2/api_packages.txt` list of packages from
    the local wheel file specified in the `requirements_lock_<python_version>.txt`.
    
    Packages are imported one by one in alphabetical order during runtime.
    
    The test doesn't identify package's order-dependent issues; for instance,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 18:17:57 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top