Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 318 for biases (0.15 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolInfoProvider.kt

            // necessary condition for it. Type aliases are not a problem here: Java code cannot access Kotlin type aliases. (Currently,
            // deprecation annotation type aliases do not work in Kotlin, either, but this might change in the future.)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/SmallCharMatcher.java

     * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    package com.google.common.base;
    
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.VisibleForTesting;
    import com.google.common.base.CharMatcher.NamedFastMatcher;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/facts/imports.go

    			addType(obj.Type())
    			if pkg := obj.Pkg(); pkg != nil {
    				packages[pkg.Path()] = pkg
    			}
    		}
    	}
    
    	addType = func(T types.Type) {
    		switch T := T.(type) {
    		case *aliases.Alias:
    			addType(aliases.Unalias(T))
    		case *types.Basic:
    			// nop
    		case *types.Named:
    			// Remove infinite expansions of *types.Named by always looking at the origin.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/ureader.go

    		// Within types2, position bases have a lot more details (e.g.,
    		// keeping track of where //line directives appeared exactly).
    		//
    		// For go/types, we just track the file name.
    
    		filename = r.String()
    
    		if r.Bool() { // file base
    			// Was: "b = token.NewTrimmedFileBase(filename, true)"
    		} else { // line base
    			pos := r.pos()
    			line := r.Uint()
    			col := r.Uint()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. tests/integration/security/ca_custom_root/trust_domain_validation_test.go

    					// naked: only test app without sidecar, send requests from trust domain aliases
    					// client: app with sidecar, send request from cluster.local
    					// server: app with sidecar, verify requests from cluster.local or trust domain aliases
    					client := match.Cluster(cluster).FirstOrFail(t, client)
    					naked := match.Cluster(cluster).FirstOrFail(t, apps.Naked)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    This error indicates that your version catalog contains (at least) two aliases which are mapped to the same accessor.
    Given an alias like `some.alias`, Gradle implements a mapping strategy to a _getter_ for type-checked accessors.
    In this case, it means that two aliases are in conflict because they result in the same getter being created.
    
    To fix this problem, you must choose different aliases.
    
    [[too_many_entries]]
    == Too many entries in a single catalog
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    include::sample[dir="snippets/dependencyManagement/catalogs-settings/groovy",files="settings.gradle[tags=simple_catalog]"]
    ====
    
    [[sub:mapping-aliases-to-accessors]]
    ==== Aliases and their mapping to type safe accessors
    
    Aliases must consist of a series of identifiers separated by a dash (`-`, recommended), an underscore (`_`) or a dot (`.`).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/builder/testdata/http/extended-simple-policy-td-aliases-out.yaml

    Kuat <******@****.***> 1711363165 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/testdata/http/extended-td-aliases-source-principal-out.yaml

    Kuat <******@****.***> 1711363165 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/controllermanager.go

    	cliflag "k8s.io/component-base/cli/flag"
    	"k8s.io/component-base/cli/globalflag"
    	"k8s.io/component-base/configz"
    	"k8s.io/component-base/featuregate"
    	"k8s.io/component-base/logs"
    	logsapi "k8s.io/component-base/logs/api/v1"
    	metricsfeatures "k8s.io/component-base/metrics/features"
    	controllersmetrics "k8s.io/component-base/metrics/prometheus/controllers"
    	"k8s.io/component-base/metrics/prometheus/slis"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top