Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 590 for cheese (0.08 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/preferCorrectResolve.kt

    }
    
    fun test(a: A) {
        <caret_context>val x = 0
    }
    
    // MODULE: main
    // MODULE_KIND: CodeFragment
    // CONTEXT_MODULE: context
    
    // FILE: fragment.kt
    // CODE_FRAGMENT_KIND: EXPRESSION
    // Need to choose public foo(Any) call instead of more specific but private call foo(Int)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 388 bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java

           *
           * 1. On Android, querying a WeakReference blocks if the GC is doing an otherwise-concurrent
           * pass.
           *
           * 2. We would probably choose to compare exceptions using == instead of equals() (for
           * consistency with how weak references are cleared). That's a behavior change -- arguably the
           * removal of a feature.
           *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. src/internal/bytealg/equal_ppc64x.s

    	SRD	R14, R7, R7		// Clear the upper (8-len) bytes (with 2 shifts)
    	SRD	R14, R17, R17
    	SRD	R14, R15, R6		// Clear the lower (8-len) bytes
    	SRD	R14, R16, R9
    #ifdef GOARCH_ppc64le
    	ISEL	CR1LT, R7, R6, R8      // Choose the correct len bytes to compare based on alignment
    	ISEL	CR0LT, R17, R9, R4
    #else
    	ISEL	CR1LT, R6, R7, R8
    	ISEL	CR0LT, R9, R17, R4
    #endif
    	CMP	R4, R8
    	ISEL	CR0EQ, R11, R0, R3
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. pilot/pkg/xds/xdsgen.go

    		}
    	}
    	return g
    }
    
    // Push an XDS resource for the given connection. Configuration will be generated
    // based on the passed in generator. Based on the updates field, generators may
    // choose to send partial or even no response if there are no changes.
    func (s *DiscoveryServer) pushXds(con *Connection, w *model.WatchedResource, req *model.PushRequest) error {
    	if w == nil {
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. requirements-docs.txt

    -e .
    -r requirements-docs-tests.txt
    mkdocs-material==9.5.18
    mdx-include >=1.4.1,<2.0.0
    mkdocs-redirects>=1.2.1,<1.3.0
    typer >=0.12.0
    pyyaml >=5.3.1,<7.0.0
    # For Material for MkDocs, Chinese search
    jieba==0.42.1
    # For image processing by Material for MkDocs
    pillow==10.3.0
    # For image processing by Material for MkDocs
    cairosvg==2.7.0
    mkdocstrings[python]==0.24.3
    griffe-typingdoc==0.2.2
    # For griffe, it formats with black
    black==24.3.0
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Apr 28 00:27:34 UTC 2024
    - 465 bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/ExecutableTools.java

    /**
     * A collection of tools.
     */
    public interface ExecutableTools {
        /**
         * Returns the implementation version of these tools.
         */
        VersionNumber getImplementationVersion();
    
        /**
         * Returns the path entries that must be present in order to use these tools, possibly none.
         */
        List<File> getPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/composite/whitelist.go

    package composite
    
    // unkeyedLiteral is a white list of types in the standard packages
    // that are used with unkeyed literals we deem to be acceptable.
    var unkeyedLiteral = map[string]bool{
    	// These image and image/color struct types are frozen. We will never add fields to them.
    	"image/color.Alpha16": true,
    	"image/color.Alpha":   true,
    	"image/color.CMYK":    true,
    	"image/color.Gray16":  true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 00:08:36 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. okhttp-brotli/README.md

    ============================
    
    This module is an implementation of [Brotli][1] compression.
    It enables Brotli support in addition to tranparent Gzip support,
    provided Accept-Encoding is not set previously.  Modern web servers
    must choose to return Brotli responses.  n.b. It is not used for
    sending requests.
    
    ```java
    OkHttpClient client = new OkHttpClient.Builder()
      .addInterceptor(BrotliInterceptor.INSTANCE)
      .build();
    ```
    
    ```kotlin
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 572 bytes
    - Viewed (0)
  9. pilot/cmd/pilot-discovery/app/cmd.go

    	c.PersistentFlags().StringSliceVar(&serverArgs.RegistryOptions.Registries, "registries",
    		[]string{string(provider.Kubernetes)},
    		fmt.Sprintf("Comma separated list of platform service registries to read from (choose one or more from {%s, %s})",
    			provider.Kubernetes, provider.Mock))
    	c.PersistentFlags().StringVar(&serverArgs.RegistryOptions.ClusterRegistriesNamespace, "clusterRegistriesNamespace",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/internal/trace/raw/doc.go

    just the length of the unquoted string.
    
    For example:
    
    	String id=5
    		data="hello world\x00"
    
    These events are identified in their spec by the HasData flag.
    
    The second special case consists of stack events. These events are identified
    by the IsStack flag. These events also have a trailing unsigned integer argument
    describing the number of stack frame descriptors that follow. Each stack frame
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top