Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 890 for alocale (0.36 sec)

  1. src/cmd/vendor/golang.org/x/text/language/match.go

    //     the MaxExact level to allow iw vs he to still be a closer match than
    //     en-AU vs en-US, for example.
    // [5] In CLDR a locale inherits fields that are unspecified for this locale
    //     from its parent. Therefore, if a locale is a parent of another locale,
    //     it is a strong measure for closeness, especially when no other tie
    //     breaker rule applies. One could also argue it is inconsistent, for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. schema/relationship_test.go

    		},
    	})
    }
    
    func TestMany2ManyWithMultiPrimaryKeys(t *testing.T) {
    	type Tag struct {
    		ID     uint   `gorm:"primary_key"`
    		Locale string `gorm:"primary_key"`
    		Value  string
    	}
    
    	type Blog struct {
    		ID         uint   `gorm:"primary_key"`
    		Locale     string `gorm:"primary_key"`
    		Subject    string
    		Body       string
    		Tags       []Tag `gorm:"many2many:blog_tags;"`
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/LoggingDeprecatedFeatureHandler.java

    import org.gradle.util.internal.DefaultGradleVersion;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import javax.annotation.Nullable;
    import java.util.List;
    import java.util.Locale;
    import java.util.Set;
    import java.util.concurrent.CopyOnWriteArraySet;
    
    import static org.gradle.api.problems.Severity.WARNING;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

    import org.gradle.api.problems.internal.InternalProblemSpec;
    
    import javax.tools.Diagnostic;
    import javax.tools.DiagnosticListener;
    import javax.tools.JavaFileObject;
    import java.util.Locale;
    import java.util.function.Function;
    
    /**
     * A {@link DiagnosticListener} that consumes {@link Diagnostic} messages, and reports them as Gradle {@link Problems}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. src/runtime/traceregion.go

    		}
    
    		// Add the existing block to the full list.
    		block.next = a.full
    		a.full = block
    	}
    
    	// Allocate a new block.
    	block = (*traceRegionAllocBlock)(sysAlloc(unsafe.Sizeof(traceRegionAllocBlock{}), &memstats.other_sys))
    	if block == nil {
    		throw("traceRegion: out of memory")
    	}
    
    	// Allocate space for our current request, so we always make
    	// progress.
    	block.off.Store(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. pkg/controller/nodeipam/ipam/cidrset/cidr_set_test.go

    		}
    	}
    
    	// Make sure that we can allocate exactly `numAllocatable24s` elements.
    	for i := 0; i < numAllocatable24s; i++ {
    		_, err := a.AllocateNext()
    		if err != nil {
    			t.Fatalf("Expected to be able to allocate %d CIDRS, failed after %d", numAllocatable24s, i)
    		}
    	}
    
    	_, err = a.AllocateNext()
    	if err == nil {
    		t.Fatalf("Expected to be able to allocate exactly %d CIDRS, got one more", numAllocatable24s)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 08:53:03 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildStatusRenderer.java

    import org.gradle.internal.operations.BuildOperationCategory;
    import org.gradle.internal.operations.OperationIdentifier;
    
    import java.util.HashSet;
    import java.util.Locale;
    import java.util.Set;
    
    /**
     * <p>This listener displays nothing unless it receives periodic {@link UpdateNowEvent} clock events.</p>
     */
    public class BuildStatusRenderer implements OutputEventListener {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/GenericFileSystem.java

    import org.gradle.internal.nativeintegration.filesystem.Symlink;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import javax.inject.Inject;
    import java.io.File;
    import java.io.IOException;
    import java.util.Locale;
    import java.util.UUID;
    
    class GenericFileSystem implements FileSystem {
        private static final Logger LOGGER = LoggerFactory.getLogger(GenericFileSystem.class);
    
        private Boolean caseSensitive;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskLocaleIntegrationTest.groovy

    import spock.lang.Issue
    
    class TestTaskLocaleIntegrationTest extends AbstractIntegrationSpec {
        @Issue("https://github.com/gradle/gradle/issues/2661")
        def "test logging can be configured on turkish locale"() {
            given:
            buildFile << """
                apply plugin:'java'
                test {
                    testLogging {
                        events "passed", "skipped", "failed"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. pkg/registry/core/service/portallocator/allocator.go

    func (r *PortAllocator) Used() int {
    	return r.portRange.Size - r.alloc.Free()
    }
    
    // Allocate attempts to reserve the provided port. ErrNotInRange or
    // ErrAllocated will be returned if the port is not valid for this range
    // or has already been reserved.  ErrFull will be returned if there
    // are no ports left.
    func (r *PortAllocator) Allocate(port int) error {
    	ok, offset := r.contains(port)
    	if !ok {
    		// update metrics
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top