Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for nonaccessible (0.29 sec)

  1. src/internal/types/testdata/check/lookup2.go

    //
    // misspelled     x.foo   !=    Foo    type X has no field or method foo, but does have field Foo
    // missing        x.foo   !=    FoO    type X has no field or method foo
    // inaccessible   x.foo   !=    foo    cannot refer to unexported field foo
    // missing        x.foo   !=    foO    type X has no field or method foo
    
    type S struct {
    	Foo1 int
    	FoO2 int
    	foo3 int
    	foO4 int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt

      var recordFrames = false
      var recordSslDebug = false
    
      private val sslExcludeFilter =
        Regex(
          buildString {
            append("^(?:")
            append(
              listOf(
                "Inaccessible trust store",
                "trustStore is",
                "Reload the trust store",
                "Reload trust certs",
                "Reloaded",
                "adding as trusted certificates",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. src/cmd/cover/cfg_test.go

    		cmd.Dir = instdira
    		run(cmd, t)
    	}
    
    	// Do some error testing to ensure that various bad options and
    	// combinations are properly rejected.
    
    	// Expect error if config file inaccessible/unreadable.
    	mode := "atomic"
    	errExpected := true
    	tag := "errors"
    	_, _, errmsg := runPkgCover(t, instdira, tag, "/not/a/file", mode,
    		apkgfiles, errExpected)
    	want := "error reading pkgconfig file"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/LittleEndianByteArray.java

        void putLongLittleEndian(byte[] array, int offset, long value);
      }
    
      /**
       * The only reference to Unsafe is in this nested class. We set things up so that if
       * Unsafe.theUnsafe is inaccessible, the attempt to load the nested class fails, and the outer
       * class's static initializer can fall back on a non-Unsafe version.
       */
      @SuppressWarnings({"SunApi", "removal"}) // b/345822163
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/time/sleep.go

    // Note: The runtime knows the layout of struct Timer, since newTimer allocates it.
    // The runtime also knows that Ticker and Timer have the same layout.
    // There are extra fields after the channel, reserved for the runtime
    // and inaccessible to users.
    
    // The Timer type represents a single event.
    // When the Timer expires, the current time will be sent on C,
    // unless the Timer was created by [AfterFunc].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. 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)
  7. android/guava/src/com/google/common/hash/LittleEndianByteArray.java

        void putLongLittleEndian(byte[] array, int offset, long value);
      }
    
      /**
       * The only reference to Unsafe is in this nested class. We set things up so that if
       * Unsafe.theUnsafe is inaccessible, the attempt to load the nested class fails, and the outer
       * class's static initializer can fall back on a non-Unsafe version.
       */
      @SuppressWarnings({"SunApi", "removal"}) // b/345822163
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorFragments.kt

        is TypeAccessibility.Accessible -> typeAccessibility.run { type.kmType to internalName() }
        is TypeAccessibility.Inaccessible -> KotlinType.any to InternalNameOf.javaLangObject
    }
    
    
    private
    val SchemaType.kmType: KmType
        get() = value.kmType
    
    
    private
    val TypeOf<*>.kmType: KmType
        get() = when {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

            assertThat(result.output, containsString("`javaTypeExtension` is MessageDigest? true"))
        }
    
        @Test
        fun `given extension with inaccessible type, its accessor is typed Any`() {
    
            withFile(
                "init.gradle",
                """
                class TestExtension {}
                rootProject {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
Back to top