Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 133 for flavor (0.13 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.NativeBinarySpec.xml

                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>buildType</td>
                </tr>
                <tr>
                    <td>flavor</td>
                </tr>
                <tr>
                    <td>targetPlatform</td>
                </tr>
                <tr>
                    <td>component</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/functional/src/main/java/org/gradle/internal/lazy/Lazy.java

         * non-initialized {@link Lazy} at the same time but one value will eventually be cached and
         * published to all threads.
         * <br>
         * <b>WARNING:</b> Given the above, this flavor of {@code Lazy} initialization should not be used
         * with a {@code Supplier} that can have undesirable side effects if executed more than once.
         */
        static Factory atomic() {
            return AtomicLazy::new;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/Parameter.java

      private final TypeToken<?> type;
      private final ImmutableList<Annotation> annotations;
    
      /**
       * An {@code AnnotatedType} instance, or {@code null} under Android VMs (possible only when using
       * the Android flavor of Guava). The field is declared with a type of {@code Object} to avoid
       * compatibility problems on Android VMs. The corresponding accessor method, however, can have the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 16 15:12:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/Parameter.java

      private final TypeToken<?> type;
      private final ImmutableList<Annotation> annotations;
    
      /**
       * An {@code AnnotatedType} instance, or {@code null} under Android VMs (possible only when using
       * the Android flavor of Guava). The field is declared with a type of {@code Object} to avoid
       * compatibility problems on Android VMs. The corresponding accessor method, however, can have the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 16 15:12:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/macho_update_uuid.go

    	// want the "version" of this UUID to appear as 'hashed' as opposed
    	// to random or time-based.  This is something of a fiction since
    	// we're not actually hashing using MD5 or SHA1, but it seems better
    	// to use this UUID flavor than any of the others. This is similar
    	// to how other linkers handle this (for example this code in lld:
    	// https://github.com/llvm/llvm-project/blob/2a3a79ce4c2149d7787d56f9841b66cacc9061d0/lld/MachO/Writer.cpp#L524).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryBuildTypesIntegrationTest.groovy

            then:
            failure.assertHasDescription("Could not determine the dependencies of task ':linkMainReleaseExecutable'.")
            failure.assertHasCause("No static library binary available for library 'hello' with [flavor: 'default', platform: '${NativePlatformsTestFixture.defaultPlatformName}', buildType: 'release']")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. src/internal/coverage/test/counter_test.go

    		mkfunc(0, 1, []uint32{16, 17}),
    		mkfunc(1, 0, []uint32{18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 976543, 7}),
    	}
    	writeVisitor := &ctrVis{funcs: funcs}
    
    	for kf, flav := range flavors {
    
    		t.Logf("testing flavor %d\n", flav)
    
    		// Open a counter data file in preparation for emitting data.
    		d := t.TempDir()
    		cfpath := filepath.Join(d, fmt.Sprintf("covcounters.hash.0.%d", kf))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 26 12:44:34 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/security/index.md

    For example, Google login uses OpenID Connect (which underneath uses OAuth2).
    
    But Facebook login doesn't support OpenID Connect. It has its own flavor of OAuth2.
    
    ### OpenID (not "OpenID Connect")
    
    There was also an "OpenID" specification. That tried to solve the same thing as **OpenID Connect**, but was not based on OAuth2.
    
    So, it was a complete additional system.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/dataclasses.md

    So, even with the code above that doesn't use Pydantic explicitly, FastAPI is using Pydantic to convert those standard dataclasses to Pydantic's own flavor of dataclasses.
    
    And of course, it supports the same:
    
    * data validation
    * data serialization
    * data documentation, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. src/internal/coverage/encodecounter/encode.go

    		var buf []byte
    		var towr int
    		if cfw.cflavor == coverage.CtrRaw {
    			binary.LittleEndian.PutUint32(ctrb, val)
    			buf = ctrb
    			towr = 4
    		} else if cfw.cflavor == coverage.CtrULeb128 {
    			cfw.tmp = cfw.tmp[:0]
    			cfw.tmp = uleb128.AppendUleb128(cfw.tmp, uint(val))
    			buf = cfw.tmp
    			towr = len(buf)
    		} else {
    			panic("internal error: bad counter flavor")
    		}
    		if sz, err := ws.Write(buf); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top