Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 149 for logical (2.54 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirFunctionSymbol.kt

            get() = withValidityAssertion {
                when {
                    firSymbol.origin == FirDeclarationOrigin.DynamicScope -> KaSymbolKind.CLASS_MEMBER
                    firSymbol.isLocal -> KaSymbolKind.LOCAL
                    firSymbol.containingClassLookupTag()?.classId == null -> KaSymbolKind.TOP_LEVEL
                    else -> KaSymbolKind.CLASS_MEMBER
                }
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. buildscripts/upgrade-tests/compose.yml

        ports:
        - "9000:9000"
        - "9001:9001"
        depends_on:
          - minio1
          - minio2
          - minio3
          - minio4
    
    ## By default this config uses default local driver,
    ## For custom volumes replace with volume driver configuration.
    volumes:
      data1-1:
      data1-2:
      data1-3:
      data2-1:
      data2-2:
      data2-3:
      data3-1:
      data3-2:
      data3-3:
      data4-1:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/time/format.go

    		t.addSec(-int64(zoneOffset))
    
    		// Look for local zone with the given offset.
    		// If that zone was in effect at the given time, use it.
    		name, offset, _, _, _ := local.lookup(t.unixSec())
    		if offset == zoneOffset && (zoneName == "" || name == zoneName) {
    			t.setLoc(local)
    			return t, nil
    		}
    
    		// Otherwise create fake zone to record offset.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/EnvVariableInjection.groovy

            }
        }
    
        static void checkEnvironmentVariableUnset(String key) {
            // We can't "unset" the variable with the API executer provides, but it isn't necessary, thanks to the filtering in
            // build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt
            if (System.getenv().containsKey(key)) {
                throw new IllegalStateException("Environment variable $key is present for this process and may affect tests")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry_logging_test.go

    			assert.Equal(t, first, second)
    		})
    	}
    }
    
    func TestBuildOpenTelemetryAccessLogConfig(t *testing.T) {
    	fakeCluster := "outbound|55680||otel-collector.monitoring.svc.cluster.local"
    	fakeAuthority := "otel-collector.monitoring.svc.cluster.local"
    	for _, tc := range []struct {
    		name        string
    		logName     string
    		clusterName string
    		hostname    string
    		body        string
    		labels      *structpb.Struct
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtOriginalPsiProvider.kt

    @KaAnalysisApiInternals
    public typealias KtOriginalPsiProvider = KaOriginalPsiProvider
    
    @KaAnalysisApiInternals
    public interface KaOriginalPsiProviderMixIn : KaSessionMixIn {
        /**
         * If [KtDeclaration] is a non-local declaration in a fake file analyzed in dependent session, returns the original declaration
         * for [this]. Otherwise, returns `null`.
         */
        @KaAnalysisApiInternals
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. cmd/kube-proxy/app/server_linux.go

    		config.NodePortAddresses = []string{proxyconfigapi.NodePortAddressesPrimary}
    	}
    
    	if config.DetectLocalMode == "" {
    		o.logger.V(4).Info("Defaulting detect-local-mode", "localModeClusterCIDR", string(proxyconfigapi.LocalModeClusterCIDR))
    		config.DetectLocalMode = proxyconfigapi.LocalModeClusterCIDR
    	}
    	o.logger.V(2).Info("DetectLocalMode", "localMode", string(config.DetectLocalMode))
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. samples/addons/loki.yaml

            filesystem:
              chunks_directory: /var/loki/chunks
              rules_directory: /var/loki/rules
        frontend:
          scheduler_address: ""
          tail_proxy_url: http://loki-querier.istio-system.svc.cluster.local:3100
        frontend_worker:
          scheduler_address: ""
        index_gateway:
          mode: simple
        limits_config:
          max_cache_freshness_per_query: 10m
          query_timeout: 300s
          reject_old_samples: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. cni/pkg/plugin/plugin.go

    	for _, excludeNs := range conf.Kubernetes.ExcludeNamespaces {
    		if podNamespace == excludeNs {
    			log.Infof("pod namespace excluded")
    			return nil
    		}
    	}
    
    	// Begin ambient plugin logic
    	// For ambient pods, this is all the logic we need to run
    	if conf.AmbientEnabled {
    		log.Debugf("istio-cni ambient cmdAdd podName: %s - checking if ambient enabled", podName)
    		podIsAmbient, err := isAmbientPod(kClient, podName, podNamespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/build.gradle.kts

    import gradlebuild.basics.tasks.PackageListGenerator
    
    plugins {
        id("gradlebuild.distribution.implementation-java")
    }
    
    description = "A library that aids in testing Gradle plugins and build logic in general"
    
    errorprone {
        disabledChecks.addAll(
            "CatchAndPrintStackTrace", // 1 occurrences
            "ImmutableEnumChecker", // 1 occurrences
        )
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top