Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 225 for csproduct (0.14 sec)

  1. pkg/kubelet/winstats/perfcounter_nodestats.go

    	return cpuUsageNanoCores
    }
    
    func getSystemUUID() (string, error) {
    	result, err := exec.Command("wmic", "csproduct", "get", "UUID").Output()
    	if err != nil {
    		return "", err
    	}
    	fields := strings.Fields(string(result))
    	if len(fields) != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/swiftpm/Product.java

    package org.gradle.swiftpm;
    
    import org.gradle.api.Named;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * A product in a Swift Package Manager package.
     *
     * @since 4.6
     */
    @HasInternalProtocol
    public interface Product extends Named {
        /**
         * Returns the name of this product.
         */
        @Override
        String getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 955 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/templates/structuring-software-projects/android-app/app/src/main/AndroidManifest.xml

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
              package="com.example.myproduct.app">
    
        <uses-permission android:name="android.permission.INTERNET" />
    
        <application>
            <activity android:name=".MyProductAppActivity" android:label="My Product">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 580 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/templates/structuring-software-projects/user-feature/table/src/main/java/com/example/myproduct/user/table/TableBuilder.java

    package com.example.myproduct.user.table;
    
    import com.example.myproduct.admin.state.ConfigurationState;
    import com.example.myproduct.model.MyProductRelease;
    import com.example.myproduct.user.data.DataRetriever;
    
    import java.util.Arrays;
    import java.util.List;
    import java.util.stream.Collectors;
    
    public class TableBuilder {
    
        public static List<List<String>> build() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/templates/structuring-software-projects/admin-feature/config/src/test/kotlin/com/example/myproduct/admin/config/AdminControllerTest.kt

    package com.example.myproduct.admin.config
    
    import com.example.myproduct.admin.state.ConfigurationState
    import com.example.myproduct.admin.state.VersionRangeSetting
    import org.junit.jupiter.api.Assertions.assertEquals
    import org.junit.jupiter.api.Test
    
    class AdminControllerTest {
        @Test fun updatesState() {
            AdminController.update(VersionRange("1", "2"))
            assertEquals(VersionRangeSetting("1", "2"), ConfigurationState.rangeSetting)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 459 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/templates/structuring-software-projects/server-application/app/src/main/java/com/example/myproduct/server/MyProductAdminController.java

    package com.example.myproduct.server;
    
    import com.example.myproduct.admin.config.AdminController;
    import com.example.myproduct.admin.config.VersionRange;
    
    import org.springframework.stereotype.Controller;
    import org.springframework.ui.Model;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.ModelAttribute;
    import org.springframework.web.bind.annotation.PostMapping;
    
    @Controller
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 903 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/aggregation/test-coverage/build.gradle.kts

    plugins {
        id("com.example.report-aggregation")
    }
    
    dependencies {
        // Transitively collect coverage data from all features and their dependencies
        aggregate("com.example.myproduct.user-feature:table")
        aggregate("com.example.myproduct.admin-feature:config")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 272 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/templates/structuring-software-projects/user-feature/data/src/main/java/com/example/myproduct/user/data/DataRetriever.java

    package com.example.myproduct.user.data;
    
    import com.fasterxml.jackson.databind.ObjectMapper;
    import com.example.myproduct.model.MyProductRelease;
    import com.example.myproduct.model.MyProductReleaseList;
    
    import java.net.URL;
    import java.util.Arrays;
    import java.util.stream.Collectors;
    
    public class DataRetriever {
    
        static public class Version {
            public String version;
            public String buildTime;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXTarget.java

            INDEXER("org.gradle.product-type.indexer"),
    
            STATIC_LIBRARY("com.apple.product-type.library.static"),
            DYNAMIC_LIBRARY("com.apple.product-type.library.dynamic"),
            TOOL("com.apple.product-type.tool"),
            BUNDLE("com.apple.product-type.bundle"),
            FRAMEWORK("com.apple.product-type.framework"),
            STATIC_FRAMEWORK("com.apple.product-type.framework.static"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/aggregation/test-coverage/build.gradle

    plugins {
        id('com.example.report-aggregation')
    }
    
    dependencies {
        // Transitively collect coverage data from all features and their dependencies
        aggregate('com.example.myproduct.user-feature:table')
        aggregate('com.example.myproduct.admin-feature:config')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 272 bytes
    - Viewed (0)
Back to top