Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for grandparent (0.14 sec)

  1. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        URL url1 = new URL("file:/a");
        URL url2 = new URL("file:/b");
        URLClassLoader grandParent = new URLClassLoader(new URL[] {url1}, null);
        URLClassLoader parent = new URLClassLoader(new URL[] {url2}, grandParent);
        assertThat(ClassPath.getClassPathEntries(new ClassLoader(parent) {}))
            .containsExactly(new File("/a"), grandParent, new File("/b"), parent);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

            parent is R && check(parent, this) -> parent
            parent is KtQualifiedExpression && parent.selectorExpression == this -> {
                val grandParent = parent.nonContainerParent
                when {
                    grandParent is R && check(grandParent, parent) -> grandParent
                    else -> null
                }
            }
            else -> null
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/start.go

    	// The child process must write to a log file, not
    	// the stderr file it inherited from the parent, as
    	// the child may outlive the parent but should not prolong
    	// the life of any pipes created (by the grandparent)
    	// to gather the output of the parent.
    	//
    	// By default, we discard the child process's stderr,
    	// but in line with the uploader, log to a file in debug
    	// only if that directory was created by the user.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. doc/godebug.md

    setting](/pkg/crypto/tls/#ConnectionState.ExportKeyingMaterial).
    
    Go 1.22 changed how the runtime interacts with transparent huge pages on Linux.
    In particular, a common default Linux kernel configuration can result in
    significant memory overheads, and Go 1.22 no longer works around this default.
    To work around this issue without adjusting kernel settings, transparent huge
    pages can be disabled for Go memory with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

                  - Unmatched attributes:
                      - Provides opacity 'transparent' but the consumer didn't ask for it
                      - Provides shape 'round' but the consumer didn't ask for it
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  6. doc/next/3-tools.md

    contains the telemetry collection mode, and the `GOTELEMETRYDIR` value setting which contains
    the directory telemetry data and configuration are written to.
    
    <!-- go.dev/issue/58894 ("all: add opt-in transparent telemetry to Go toolchain") -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 19:06:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/image/gif/reader_test.go

    	b := &bytes.Buffer{}
    	b.WriteString(headerStr)
    	b.WriteString(paletteStr)
    	for transparentIndex := 0; transparentIndex < 3; transparentIndex++ {
    		if transparentIndex < 2 {
    			// Write the graphic control for the transparent index.
    			b.WriteString("\x21\xf9\x04\x01\x00\x00")
    			b.WriteByte(byte(transparentIndex))
    			b.WriteByte(0)
    		}
    		// Write an image with bounds 2x1, as per TestDecode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr {
        background-color: transparent;
    }
    table.plain {
        border-collapse: collapse;
        border: 1px solid var(--table-border-color);
    }
    table.plain > thead > tr, table.plain > tbody tr, table.plain > tr {
        background-color: transparent;
    }
    table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_builder.go

    	ipTablesListener := &listener.Listener{
    		Name:             model.VirtualOutboundListenerName,
    		Address:          util.BuildAddress(actualWildcards[0], uint32(lb.push.Mesh.ProxyListenPort)),
    		Transparent:      isTransparentProxy,
    		UseOriginalDst:   proto.BoolTrue,
    		FilterChains:     filterChains,
    		TrafficDirection: core.TrafficDirection_OUTBOUND,
    	}
    	// add extra addresses for the listener
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/base.css

        word-wrap: break-word;
    }
    
    pre {
        line-height: 1.45;
        margin-top: 0;
        margin-bottom: 1.5em;
        padding: 1rem;
    }
    
    pre code {
        background-color: transparent;
        color: inherit;
        line-height: 1.45;
        font-size: 100%;
        padding: 0;
    }
    
    a code {
        color: #1BA8CB;
    }
    
    pre.code, pre.programlisting, pre.screen, pre.tt {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top