Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for type_ (0.05 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    }
    
    // demangleType parses:
    //
    //	<type> ::= <builtin-type>
    //	       ::= <function-type>
    //	       ::= <class-enum-type>
    //	       ::= <array-type>
    //	       ::= <pointer-to-member-type>
    //	       ::= <template-param>
    //	       ::= <template-template-param> <template-args>
    //	       ::= <substitution>
    //	       ::= <CV-qualifiers> <type>
    //	       ::= P <type>
    //	       ::= R <type>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        S newSegment(MapMakerInternalMap<K, V, E, S> map, int initialCapacity);
    
        /**
         * Returns a freshly created entry, typed at the {@code E} type, for the given {@code segment}.
         */
        E newEntry(S segment, K key, int hash, @CheckForNull E next);
    
        /**
         * Returns a freshly created entry, typed at the {@code E} type, for the given {@code segment},
         * that is a copy of the given {@code entry}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal.go

    		}
    	default:
    		// It shouldn't reach here as invalid metric source type is filtered out in the api-server's validation.
    		err = fmt.Errorf("unknown metric source type %q%w", string(spec.Type), errSpec)
    		condition := a.getUnableComputeReplicaCountCondition(hpa, "InvalidMetricSourceType", err)
    		return 0, "", time.Time{}, condition, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * link:{groovyDslPath}/org.gradle.language.nativeplatform.tasks.AbstractNativeCompileTask.html#org.gradle.language.nativeplatform.tasks.AbstractNativeCompileTask:objectFileDir[AbstractNativeCompileTask.objectFileDir] is now of type `DirectoryProperty` instead of `File`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/x-font-otf",
    				"application/x-font-pcf",
    				"application/x-font-snf",
    				"application/x-font-speedo",
    				"application/x-font-sunos-news",
    				"application/x-font-ttf",
    				"application/x-font-type1",
    				"application/x-font-adobe-metric",
    				"application/x-font-printer-metric",
    				"application/x-font-vfont",
    				"application/x-foxmail",
    				"application/x-futuresplash",
    				"application/x-gnucash",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // This should be used in the private: declarations for a class.
    #define GTEST_DISALLOW_ASSIGN_(type)\
      void operator=(type const &)
    
    // A macro to disallow copy constructor and operator=
    // This should be used in the private: declarations for a class.
    #define GTEST_DISALLOW_COPY_AND_ASSIGN_(type)\
      type(type const &);\
      GTEST_DISALLOW_ASSIGN_(type)
    
    // Tell the compiler to warn about unused return values for functions declared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/pv_controller.go

    	// version errors in API server and other checks in this controller),
    	// however overall speed of multi-worker controller would be lower than if
    	// it runs single thread only.
    	claimQueue  *workqueue.Typed[string]
    	volumeQueue *workqueue.Typed[string]
    
    	// Map of scheduled/running operations.
    	runningOperations goroutinemap.GoRoutineMap
    
    	// For testing only: hook to call before an asynchronous operation starts.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    func (n *nodeHealthMap) set(name string, data *nodeHealthData) {
    	n.lock.Lock()
    	defer n.lock.Unlock()
    	n.nodeHealths[name] = data
    }
    
    type podUpdateItem struct {
    	namespace string
    	name      string
    }
    
    // Controller is the controller that manages node's life cycle.
    type Controller struct {
    	taintManager *tainteviction.Controller
    
    	podLister         corelisters.PodLister
    	podInformerSynced cache.InformerSynced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    // if cloud provider is specified. Otherwise, returns the hostname of the node.
    func getNodeName(cloud cloudprovider.Interface, hostname string) (types.NodeName, error) {
    	if cloud == nil {
    		return types.NodeName(hostname), nil
    	}
    
    	instances, ok := cloud.Instances()
    	if !ok {
    		return "", fmt.Errorf("failed to get instances from cloud provider")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. src/go/parser/parser.go

    				// If named == typed we must have parameters that have no types,
    				// and they must be at the end of the parameter list, otherwise
    				// the types would have been filled in by the right-to-left sweep
    				// above and we wouldn't have an error. Since we are in a type
    				// parameter list, the missing types are constraints.
    				if named == typed {
    					errPos = p.pos // position error at closing ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top