Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for defaultDate (0.16 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/schemaBuildingUtils.kt

            Boolean::class -> DataTypeInternal.DefaultBooleanDataType.ref
            Long::class -> DataTypeInternal.DefaultLongDataType.ref
            is KClass<*> -> DataTypeRefInternal.DefaultName(DefaultFqName.parse(checkNotNull(qualifiedName)))
            else -> error("unexpected type")
        }
    
    
    internal
    fun checkInScope(
        type: KType,
        typeScope: DataSchemaBuilder.PreIndex
    ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		}
    		paths[name] = append(paths[name], path)
    	}
    
    	defaultPath := paths[""]
    	b.llvmSymbolizer, b.llvmSymbolizerFound = chooseExe([]string{"llvm-symbolizer"}, []string{}, append(paths["llvm-symbolizer"], defaultPath...))
    	b.addr2line, b.addr2lineFound = chooseExe([]string{"addr2line"}, []string{"gaddr2line"}, append(paths["addr2line"], defaultPath...))
    	// The "-n" option is supported by LLVM since 2011. The output of llvm-nm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. src/net/http/cookiejar/jar.go

    		// of interpreting ::1%.www.example.com as a subdomain of www.example.com.
    		return true
    	}
    	return net.ParseIP(host) != nil
    }
    
    // defaultPath returns the directory part of a URL's path according to
    // RFC 6265 section 5.1.4.
    func defaultPath(path string) string {
    	if len(path) == 0 || path[0] != '/' {
    		return "/" // Path is empty or malformed.
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. cluster/images/etcd/migrate/options.go

    	if value, err := lookupEnv(env); err == nil {
    		return value
    	}
    	klog.Warningf("%s variable for %s flag unset - defaulting to %s", env, flag, def)
    	return def
    }
    
    func defaultName() (string, error) {
    	if etcdName, err := lookupEnv(etcdNameEnv); err == nil {
    		return etcdName, nil
    	}
    	klog.Warningf("%s variable unset - falling back to etcd-%s variable", etcdNameEnv, etcdHostnameEnv)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/serialization/SchemaSerialization.kt

                        subclass(DefaultDataClass::class)
                    }
                }
                polymorphic(DataTypeRef::class) {
                    subclass(DataTypeRefInternal.DefaultName::class)
                    subclass(DataTypeRefInternal.DefaultType::class)
                }
                polymorphic(DataParameter::class) {
                    subclass(DefaultDataParameter::class)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/TypeSafeProjectAccessorsSchemaBuildingComponent.kt

            CollectedPropertyInformation(
                "projects",
                projectAccessorsClass.createType(),
                returnType = DataTypeRefInternal.DefaultName(DefaultFqName.parse(projectAccessorsClass.qualifiedName!!)),
                propertyMode = DefaultDataProperty.DefaultPropertyMode.DefaultReadOnly,
                hasDefaultValue = true,
                isHiddenInDeclarativeDsl = false,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	proxyUID, proxyGID := inject.GetProxyIDs(ns)
    
    	defaultName := getDefaultName(gw.Name, &gw.Spec, gi.disableNameSuffix)
    
    	serviceType := gi.defaultServiceType
    	if o, f := gw.Annotations[serviceTypeOverride]; f {
    		serviceType = corev1.ServiceType(o)
    	}
    
    	input := TemplateInput{
    		Gateway:        &gw,
    		DeploymentName: model.GetOrDefault(gw.Annotations[gatewayNameOverride], defaultName),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/DefaultAnalysisSchema.kt

            override fun toString(): String = dataType.toString()
        }
    
        @Serializable
        @SerialName("dataTypeRefName")
        data class DefaultName(override val fqName: FqName) : DataTypeRef.Name {
            override fun toString(): String = fqName.simpleName
        }
    }
    
    
    val DataType.ref: DataTypeRef
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/net/http/cookiejar/jar_test.go

    	"//":          "/",
    	"/a//b":       "/a/",
    	"/a/./b":      "/a/.",
    	"/a/../b":     "/a/..",
    }
    
    func TestDefaultPath(t *testing.T) {
    	for path, want := range defaultPathTests {
    		if got := defaultPath(path); got != want {
    			t.Errorf("%q: got %q, want %q", path, got, want)
    		}
    	}
    }
    
    var domainAndTypeTests = [...]struct {
    	host         string // host Set-Cookie header was received from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top