Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 119 for Inaccessible (0.15 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

        InaccessibilityReason.TypeErasure(type)
    
    
    internal
    fun accessible(type: SchemaType): TypeAccessibility =
        TypeAccessibility.Accessible(type)
    
    
    internal
    fun inaccessible(type: SchemaType, vararg reasons: InaccessibilityReason) =
        inaccessible(type, reasons.toList())
    
    
    internal
    fun inaccessible(type: SchemaType, reasons: List<InaccessibilityReason>): TypeAccessibility =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MultimapBuilder.java

          @Override
          <K extends K0, V extends @Nullable Object> Map<K, Collection<V>> createMap() {
            // K must actually be K0, since enums are effectively final
            // (their subclasses are inaccessible)
            return (Map<K, Collection<V>>) new EnumMap<K0, Collection<V>>(keyClass);
          }
        };
      }
    
      private static final class ArrayListSupplier<V extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MultimapBuilder.java

          @Override
          <K extends K0, V extends @Nullable Object> Map<K, Collection<V>> createMap() {
            // K must actually be K0, since enums are effectively final
            // (their subclasses are inaccessible)
            return (Map<K, Collection<V>>) new EnumMap<K0, Collection<V>>(keyClass);
          }
        };
      }
    
      private static final class ArrayListSupplier<V extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorFragments.kt

        )
        if (returnType is TypeAccessibility.Accessible)
            CHECKCAST(jvmReturnType)
    }
    
    
    private
    fun accessibleTypesFor(typeAccessibility: TypeAccessibility): Pair<KmType, InternalName> = when (typeAccessibility) {
        is TypeAccessibility.Accessible -> typeAccessibility.run { type.kmType to internalName() }
        is TypeAccessibility.Inaccessible -> KotlinType.any to InternalNameOf.javaLangObject
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

                    extension{} java.lang.Object
                    """
                )
            )
    
            // Making the Extension type accessible
            // should cause the accessors to be regenerated
            // with the now accessible type
            extensionSourceFile.writeText(
                """
                public
                class Extension
                """
            )
    
            assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  7. 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)
  8. src/path/filepath/path_test.go

    		if err != nil {
    			t.Fatalf("expected no error return from Walk, got %s", err)
    		}
    		if len(errors) != 2 {
    			t.Errorf("expected 2 errors, got %d: %s", len(errors), errors)
    		}
    		// the inaccessible subtrees were marked manually
    		checkMarks(t, true)
    		errors = errors[0:0]
    
    		// 4) capture errors, stop after first error.
    		// mark respective subtrees manually
    		markTree(tree.entries[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/c/eager/tape.h

      // maintains a reference to these JVPs: if an `output_tensors` Tensor is
      // deleted, `DeleteGradient` should be called as soon as possible to free the
      // (now inaccessible) corresponding JVPs, but ForwardAccumulator's destructor
      // will release remaining references.
      //
      // This method is not thread-safe (and in general ForwardAccumulator is not
      // thread-safe).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
Back to top