Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for tzset (0.04 sec)

  1. src/time/zoneinfo.go

    		if tx.index == 0 {
    			return true
    		}
    	}
    	return false
    }
    
    // tzset takes a timezone string like the one found in the TZ environment
    // variable, the time of the last time zone transition expressed as seconds
    // since January 1, 1970 00:00:00 UTC, and a time expressed the same way.
    // We call this a tzset string since in C the function tzset reads TZ.
    // The return values are as for lookup, plus ok which reports whether the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. src/time/zoneinfo_read.go

    				// If we're at the end of the known zone transitions,
    				// try the extend string.
    				if name, offset, estart, eend, isDST, ok := tzset(l.extend, l.cacheStart, sec); ok {
    					l.cacheStart = estart
    					l.cacheEnd = eend
    					// Find the zone that is returned by tzset to avoid allocation if possible.
    					if zoneIdx := findZone(l.zone, name, offset, isDST); zoneIdx != -1 {
    						l.cacheZone = &l.zone[zoneIdx]
    					} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-library/src/test/groovy/org/gradle/api/plugins/JavaLibraryPluginTest.groovy

            then:
            testCompileClasspath.extendsFrom == toSet(testCompileOnly, testImplementation)
            !testCompileClasspath.visible
            testCompileClasspath.transitive
    
            when:
            def defaultConfig = project.configurations.getByName(Dependency.DEFAULT_CONFIGURATION)
    
            then:
            defaultConfig.extendsFrom == toSet(runtimeElements)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 20:08:52 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. testing/architecture-test/src/test/java/org/gradle/architecture/test/KotlinCompatibilityTest.java

                Set<JavaMethod> getters = gettersAndSetters.get(Boolean.TRUE).stream().map(Accessor::getMethod).collect(toSet());
                Set<JavaMethod> setters = gettersAndSetters.get(Boolean.FALSE).stream().map(Accessor::getMethod).collect(toSet());
                if (!getters.isEmpty() && !setters.isEmpty()) {
                    return new Accessors(owningClass, propertyName, getters, setters);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. src/go/types/typeset.go

    			}
    			terms = tset.terms
    		case *Union:
    			if pos.IsValid() && check != nil && !check.verifyVersionf(atPos(pos), go1_18, "embedding interface element %s", u) {
    				continue
    			}
    			tset := computeUnionTypeSet(check, unionSets, pos, u)
    			if tset == &invalidTypeSet {
    				continue // ignore invalid unions
    			}
    			assert(!tset.comparable)
    			assert(len(tset.methods) == 0)
    			terms = tset.terms
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. maven-di/src/main/java/org/apache/maven/di/impl/BindingInitializer.java

    import java.util.*;
    import java.util.function.Consumer;
    import java.util.function.Function;
    import java.util.function.Supplier;
    
    import org.apache.maven.di.Key;
    
    import static java.util.stream.Collectors.toSet;
    
    public abstract class BindingInitializer<T> {
    
        private final Set<Key<?>> dependencies;
    
        protected BindingInitializer(Set<Key<?>> dependencies) {
            this.dependencies = dependencies;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/FileBasedInstallationFactory.java

    import java.io.File;
    import java.util.Collections;
    import java.util.Set;
    import java.util.function.BiFunction;
    import java.util.stream.Stream;
    
    import static java.util.stream.Collectors.toSet;
    
    public class FileBasedInstallationFactory {
    
        public static Set<InstallationLocation> fromDirectory(File rootDirectory, String supplierName, BiFunction<File, String, InstallationLocation> locationFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 17:56:01 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/typeset.go

    			}
    			terms = tset.terms
    		case *Union:
    			if pos.IsKnown() && check != nil && !check.verifyVersionf(atPos(pos), go1_18, "embedding interface element %s", u) {
    				continue
    			}
    			tset := computeUnionTypeSet(check, unionSets, pos, u)
    			if tset == &invalidTypeSet {
    				continue // ignore invalid unions
    			}
    			assert(!tset.comparable)
    			assert(len(tset.methods) == 0)
    			terms = tset.terms
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/resolve/extensions/KtResolveExtensionTestSupport.kt

                    ?: error("Extension file $name must specify exactly one RESOLVE_EXTENSION_PACKAGE")
                val classifierNames = directives[Directives.RESOLVE_EXTENSION_CLASSIFIER].toSet()
                val callableNames = directives[Directives.RESOLVE_EXTENSION_CALLABLE].toSet()
                check(classifierNames.isNotEmpty() || callableNames.isNotEmpty()) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneAnnotationsResolver.kt

                .toSet()
        }
    
        override fun annotationsOnDeclaration(declaration: KtAnnotated): Set<ClassId> {
            return declaration.annotationEntries.asSequence()
                .mapNotNull { it.typeReference?.text }
                .map { ClassId.topLevel(FqName(it)) }
                .filter { it.resolveToAnnotation() != null }
                .toSet()
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top