Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for inaccessible (0.19 sec)

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

     *     A {
     *         val x: Int = 5
     *     },
     *
     *     // `B` has no initializer.
     *     B
     * }
     * ```
     *
     * The initializer of `A` declares a member `x: Int`, which is inaccessible outside the initializer. Still, the corresponding
     * [KaEnumEntryInitializerSymbol] can be used to get a declared member scope that contains `x`.
     */
    public interface KaEnumEntryInitializerSymbol : KaSymbolWithMembers
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. src/internal/coverage/cfile/emit.go

    // in the state struct.
    func (s *emitState) openOutputFiles(metaHash [16]byte, metaLen uint64, which fileType) error {
    	fi, err := os.Stat(s.outdir)
    	if err != nil {
    		return fmt.Errorf("output directory %q inaccessible (err: %v); no coverage data written", s.outdir, err)
    	}
    	if !fi.IsDir() {
    		return fmt.Errorf("output directory %q not a directory; no coverage data written", s.outdir)
    	}
    
    	if (which & metaDataFile) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. istioctl/pkg/workload/workload.go

    	portBehavior := "*"
    	if len(ports) > 0 {
    		portBehavior = strings.Join(ports, ",")
    	}
    
    	// 22: ssh is extremely common for VMs, and we do not want to make VM inaccessible if there is an issue
    	// 15090: prometheus
    	// 15021/15020: agent
    	excludePorts := "22,15090,15021"
    	if config.StatusPort != 15090 && config.StatusPort != 15021 {
    		if config.StatusPort != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. pilot/pkg/xds/endpoints/ep_filters_test.go

    					{Address: "2.2.2.2", Weight: 6},
    					// 2 endpoints on network2, cluster2b
    					{Address: "2.2.2.20", Weight: 6},
    					{Address: "2.2.2.21", Weight: 6},
    					// 1 endpoint on network4 with no gateway (i.e. directly accessible)
    					{Address: "40.0.0.1", Weight: 6},
    				},
    				Weight: 42,
    			},
    		},
    		wantWorkloadMetadata: []string{
    			";ns;example;;cluster1a",
    			";ns;example;;cluster1a",
    			";ns;example;;cluster1b",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

    import kotlin.reflect.KClass
    import kotlin.reflect.KFunction
    import kotlin.reflect.KProperty
    import kotlin.reflect.KVisibility
    import kotlin.reflect.full.*
    import kotlin.reflect.jvm.isAccessible
    
    public class DebugSymbolRenderer(
        public val renderExtra: Boolean = false,
        public val renderTypeByProperties: Boolean = false,
        public val renderExpandedTypes: Boolean = false,
    ) {
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

            int kindCode;
            String kind = accessRule.getKind();
            switch (kind) {
                case "accessible":
                case "0":
                    kindCode = 0;
                    break;
                case "nonaccessible":
                case "1":
                    kindCode = 1;
                    break;
                case "discouraged":
                case "2":
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    - Build cache and Develocity credentials
    - Plugin Portal publishing credentials
    
    It's important to avoid using the `DEBUG` log level when running on public Continuous Integration (CI) services.
    Build logs on these services are accessible to the public and can expose sensitive information.
    Even on private CI services, logging sensitive credentials may pose a risk depending on your organization's threat model.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

     * Contains a reverse dependency view, so we can determine which classes in this set are affected by a change to a class inside or outside this set.
     * Contains information about the accessible, inlineable constants in each class, since these require full recompilation of dependents if changed.
     * If analysis failed for any reason, that reason is captured and triggers full rebuilds if this class set is used.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            dynamicPropertyExpression << [
                'gradleProp',
                'ext.gradleProp'
            ]
        }
    
        @Issue("https://github.com/gradle/gradle/issues/19793")
        def "gradle properties must be accessible from task in #build"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            build.setup(this)
    
            when:
            configurationCacheRun build.task()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

                    && name == methodName
                    && parameterTypes[0].isAssignableFrom(parameterType)
            }
        }.onEach { serializationMethod ->
            serializationMethod.isAccessible = true
        }.reversed()
    
    
    private
    inline fun ReadContext.decodingBeanWithId(id: Int, decode: (Any, Class<*>, BeanStateReader) -> Unit): Any {
        val beanType = readClass()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top