Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 550 for typeOff (0.14 sec)

  1. src/cmd/cgo/internal/test/issue42018_windows.go

    // Copyright 2021 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.
    
    package cgotest
    
    /*
    typedef void *HANDLE;
    
    struct HWND__{int unused;}; typedef struct HWND__ *HWND;
    */
    import "C"
    
    import (
    	"testing"
    	"unsafe"
    )
    
    func test42018(t *testing.T) {
    	// Test that Windows handles are marked go:notinheap, by growing the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. pkg/kubelet/cadvisor/testing/cadvisor_mock.go

    func (mr *MockInterfaceMockRecorder) ContainerFsInfo() *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ContainerFsInfo", reflect.TypeOf((*MockInterface)(nil).ContainerFsInfo))
    }
    
    // ContainerInfoV2 mocks base method.
    func (m *MockInterface) ContainerInfoV2(name string, options v2.RequestOptions) (map[string]v2.ContainerInfo, error) {
    	m.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/plugins/internal/DefaultProjectReportsPluginConvention.java

    import org.gradle.api.reflect.HasPublicType;
    import org.gradle.api.reflect.TypeOf;
    import org.gradle.api.reporting.ReportingExtension;
    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.util.internal.WrapUtil;
    
    import javax.inject.Inject;
    import java.io.File;
    import java.util.Set;
    
    import static org.gradle.api.reflect.TypeOf.typeOf;
    
    @Deprecated
    @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 13 12:55:19 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      // length of Types.
      static bool Register(const char* prefix, const char* case_name,
                           const char* test_names, int index) {
        typedef typename Types::Head Type;
        typedef Fixture<Type> FixtureClass;
        typedef typename GTEST_BIND_(TestSel, Type) TestClass;
    
        // First, registers the first type-parameterized test in the type
        // list.
        MakeAndRegisterTestInfo(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/DefaultScalaSourceSet.java

    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.tasks.ScalaSourceDirectorySet;
    import org.gradle.api.reflect.HasPublicType;
    import org.gradle.api.reflect.TypeOf;
    
    import javax.inject.Inject;
    
    import static org.gradle.api.reflect.TypeOf.typeOf;
    import static org.gradle.util.internal.ConfigureUtil.configure;
    
    @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/cmd/cgo/godefs.go

    				override[n.Mangle] = s.Name.Name
    			}
    		}
    	}
    
    	// Extend overrides using typedefs:
    	// If we know that C.xxx should format as T
    	// and xxx is a typedef for yyy, make C.yyy format as T.
    	for typ, def := range typedef {
    		if new := override[typ]; new != "" {
    			if id, ok := def.Go.(*ast.Ident); ok {
    				override[id.Name] = new
    			}
    		}
    	}
    
    	// Apply overrides.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    namespace gtest_internal {
    
    // ByRef<T>::type is T if T is a reference; otherwise it's const T&.
    template <typename T>
    struct ByRef { typedef const T& type; };  // NOLINT
    template <typename T>
    struct ByRef<T&> { typedef T& type; };  // NOLINT
    
    // A handy wrapper for ByRef.
    #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomResolutionTest.kt

                is DocumentResolution.UnsuccessfulResolution -> "(${resolution.reasons.joinToString()})"
            }
    
        private
        fun typeString(typeRef: DataTypeRef) = when (typeRef) {
            is DataTypeRef.Type -> typeRef.dataType.toString()
            is DataTypeRef.Name -> typeRef.fqName.simpleName
        }
    
        private
        fun functionSignatureString(function: SchemaFunction) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. pkg/kubelet/container/testing/mockdirentry.go

    	return ret0, ret1
    }
    
    // Info indicates an expected call of Info.
    func (mr *MockDirEntryMockRecorder) Info() *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Info", reflect.TypeOf((*MockDirEntry)(nil).Info))
    }
    
    // IsDir mocks base method.
    func (m *MockDirEntry) IsDir() bool {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "IsDir")
    	ret0, _ := ret[0].(bool)
    	return ret0
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/issue9026/issue9026.go

    package issue9026
    
    // This file appears in its own package since the assertion tests the
    // per-package counter used to create fresh identifiers.
    
    /*
    typedef struct { int i; } git_merge_file_input;
    
    typedef struct { int j; } git_merge_file_options;
    
    void git_merge_file(
            git_merge_file_input *in,
            git_merge_file_options *opts) {}
    */
    import "C"
    import (
    	"fmt"
    	"testing"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top