Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for facts (0.06 sec)

  1. src/runtime/mgcscavenge.go

    		}
    		return i, pallocChunkPages - 1
    	}
    	// Clear searchAddr, because we've exhausted the heap.
    	cursor.Clear()
    	return 0, 0
    }
    
    // alloc updates metadata for chunk at index ci with the fact that
    // an allocation of npages occurred. It also eagerly attempts to collapse
    // the chunk's memory into hugepage if the chunk has become sufficiently
    // dense and we're not allocating the whole chunk at once (which suggests
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    	"internal/bytealg"
    	"internal/goarch"
    	"internal/stringslite"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // The code in this file implements stack trace walking for all architectures.
    // The most important fact about a given architecture is whether it uses a link register.
    // On systems with link registers, the prologue for a non-leaf function stores the
    // incoming value of LR at the bottom of the newly allocated stack frame.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    .Mapping plugin IDs to dependency coordinates
    ====
    include::sample[dir="snippets/kotlinDsl/androidSingleBuild/kotlin",files="settings.gradle.kts[tags=android];build.gradle.kts[tags=android]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. pkg/controller/disruption/disruption_test.go

    		if err != nil {
    			t.Fatalf("Failed to create pod: %v", err)
    		}
    	}
    
    	// Block until the fake clientset writes are observable in the informer caches.
    	// FUN FACT: This guarantees that the informer caches have updated, but it does
    	// not guarantee that informer event handlers have completed. Fortunately,
    	// DisruptionController does most of its logic by reading from informer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. tests/integration/security/authz_test.go

    							t.Skip("https://github.com/istio/istio/issues/37307: " +
    								"Source IP-based authz tests are not supported in multi-network configurations " +
    								"due to the fact that the origin source IP will be lost when traversing the " +
    								"east-west gateway.")
    						}
    					}
    
    					cases := []struct {
    						path    string
    						headers http.Header
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            // hasPackageName() will return true if ConstructedClassWithPackage#className has no dots.
            // but since the prefix may have them and the code there does ignore that
            // fact. We check here for ConstructedClassWithPackage.
            if (!type.hasPackageName() && module.hasPackageName() && !(type instanceof ConstructedClassWithPackage)) {
                type.setName(module.getPackageName() + name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		// it does concurrently to both requests.  For the first request this should make the client
    		// get a timeout response without directly affecting execution.  For the second request, the
    		// fact that the timeout filter closes the request's Context.Done() causes the request to be
    		// promptly ejected from its queue.  The goroutine doing the APF handling writes an HTTP
    		// response message with status 429.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/xcoff.go

    // - a C_HIDEXT which will be a csect containing all of its functions
    // It needs several parameters to create .csect symbols such as its entry point and its section number.
    //
    // Currently, a new file is in fact a new package. It seems to be OK, but it might change
    // in the future.
    func (f *xcoffFile) writeSymbolNewFile(ctxt *Link, name string, firstEntry uint64, extnum int16) {
    	ldr := ctxt.loader
    	/* C_FILE */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                // highlighting
                if (highlightInfo != null) {
                    buildHighlighter(queryHelper, queryFieldConfig, fessConfig);
                }
    
                // facets
                if (facetInfo != null) {
                    buildFacet(queryHelper, queryFieldConfig, fessConfig);
                }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  10. src/net/netip/netip_test.go

    // were to just `_ = foo()` within a test function, the compiler could
    // correctly deduce that foo() does nothing and doesn't need to be
    // called. By writing results to a global variable, we hide that fact
    // from the compiler and force it to keep the code under test.
    var (
    	sinkIP          Addr
    	sinkStdIP       net.IP
    	sinkAddrPort    AddrPort
    	sinkPrefix      Prefix
    	sinkPrefixSlice []Prefix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top