Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 763 for typeOff (0.14 sec)

  1. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

    jquery);
    L16:        });
    L17:    } else if (typeof module === 'object' && module.exports) {
    L18:        // Node / Browserify
    L19:        //isomorphic issue
    L20:        var jQuery = (typeof window != 'undefined') ? window.jQuery : undefined;
    L21:        if (!jQuery) {
    L22:            jQuery = require('jquery');
    L23:            if (!jQuery.fn) jQuery.fn = {};
    L24:        }
    L25:        var moment = (typeof window != 'undefined' && typeof window.moment != 'undefined') ? window.moment : require('moment');
    ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  2. pkg/config/schema/collections/collections.agent.gen.go

    		VersionAliases: []string{
    			"v1",
    		},
    		Proto: "istio.security.v1beta1.AuthorizationPolicy", StatusProto: "istio.meta.v1alpha1.IstioStatus",
    		ReflectType: reflect.TypeOf(&istioioapisecurityv1beta1.AuthorizationPolicy{}).Elem(), StatusType: reflect.TypeOf(&istioioapimetav1alpha1.IstioStatus{}).Elem(),
    		ProtoPackage: "istio.io/api/security/v1beta1", StatusPackage: "istio.io/api/meta/v1alpha1",
    		ClusterScoped: false,
    		Synthetic:     false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. src/internal/reflectlite/all_test.go

    		{TypeOf(complex64(0)), ""},
    		{TypeOf(complex128(0)), ""},
    		{TypeOf(byte(0)), ""},
    		{TypeOf(rune(0)), ""},
    		{TypeOf([]byte(nil)), ""},
    		{TypeOf([]rune(nil)), ""},
    		{TypeOf(string("")), ""},
    		{TypeOf((*any)(nil)).Elem(), ""},
    		{TypeOf((*byte)(nil)), ""},
    		{TypeOf((*rune)(nil)), ""},
    		{TypeOf((*int64)(nil)), ""},
    		{TypeOf(map[string]int{}), ""},
    		{TypeOf((*error)(nil)).Elem(), ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:26:08 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/DefaultConvention.java

    import java.util.Map;
    
    import static java.lang.String.format;
    import static org.gradle.api.reflect.TypeOf.typeOf;
    
    @Deprecated
    public class DefaultConvention implements org.gradle.api.plugins.Convention, ExtensionContainerInternal {
        private static final TypeOf<ExtraPropertiesExtension> EXTRA_PROPERTIES_EXTENSION_TYPE = typeOf(ExtraPropertiesExtension.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/AbstractInputPropertyAnnotationHandler.java

            Class<?> returnType = propertyMetadata.getDeclaredType().getRawType();
            if (Provider.class.isAssignableFrom(returnType)) {
                List<TypeOf<?>> typeArguments = TypeOf.typeOf(propertyMetadata.getDeclaredType().getType()).getActualTypeArguments();
                for (TypeOf<?> typeArgument : typeArguments) {
                    unpackedValueTypes.add(typeArgument.getConcreteClass());
                }
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testerrors/testdata/issue28069.go

    // license that can be found in the LICENSE file.
    
    // Test that the error message for an unrepresentable typedef in a
    // union appears on the right line. This test is only run if the size
    // of long double is larger than 64.
    
    package main
    
    /*
    typedef long double             Float128;
    
    typedef struct SV {
        union {
            Float128         float128;
        } value;
    } SV;
    */
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 555 bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/TaskContainerExtensionsTest.kt

                assertInferredTypeOf(this, typeOf<TaskContainerScope>())
    
                val clean by existing
                assertInferredTypeOf(clean, typeOf<TaskProvider<Task>>())
    
                clean { // configure
                    assertInferredTypeOf(this, typeOf<Task>())
                }
    
                existing.clean { // configure
                    assertInferredTypeOf(this, typeOf<Delete>())
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/issue27054/egl.h

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This is the relevant part of EGL/egl.h.
    
    typedef void *EGLDisplay;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 255 bytes
    - Viewed (0)
  9. platforms/jvm/war/src/main/java/org/gradle/api/plugins/internal/DefaultWarPluginConvention.java

    import org.gradle.api.Project;
    import org.gradle.api.reflect.HasPublicType;
    import org.gradle.api.reflect.TypeOf;
    import org.gradle.internal.deprecation.DeprecationLogger;
    
    import javax.inject.Inject;
    import java.io.File;
    
    import static org.gradle.api.reflect.TypeOf.typeOf;
    
    @SuppressWarnings("DeprecatedIsStillUsed")
    @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 20:00:24 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    		numTypedefs = len(p.typedefs)
    		// Also ask about any typedefs we've seen so far.
    		for _, info := range p.typedefList {
    			if f.Name[info.typedef] != nil {
    				continue
    			}
    			n := &Name{
    				Go: info.typedef,
    				C:  info.typedef,
    			}
    			f.Name[info.typedef] = n
    			f.NamePos[n] = info.pos
    		}
    		needType := p.guessKinds(f)
    		if len(needType) > 0 {
    			p.loadDWARF(f, &conv, needType)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top