Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 373 for Lists (0.11 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	// This extension must only be used on lists and may have 3 possible values:
    	//
    	// 1) `atomic`: the list is treated as a single entity, like a scalar.
    	//      Atomic lists will be entirely replaced when updated. This extension
    	//      may be used on any type of list (struct, scalar, ...).
    	// 2) `set`:
    	//      Sets are lists that must not have multiple items with the same value. Each
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. operator/cmd/mesh/profile-list.go

    }
    
    func profileListCmd(plArgs *profileListArgs) *cobra.Command {
    	return &cobra.Command{
    		Use:   "list",
    		Short: "Lists available Istio configuration profiles",
    		Long:  "The list subcommand lists the available Istio configuration profiles.",
    		Args:  cobra.ExactArgs(0),
    		RunE: func(cmd *cobra.Command, args []string) error {
    			return profileList(cmd, plArgs)
    		},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. testing/architecture-test/src/test/java/org/gradle/architecture/test/GuavaCollectionFactoryUsageTest.java

            noClasses()
                .should()
                .callMethod(com.google.common.collect.Lists.class, "newArrayList")
                .orShould()
                .callMethod(com.google.common.collect.Lists.class, "newCopyOnWriteArrayList")
                .orShould()
                .callMethod(com.google.common.collect.Lists.class, "newLinkedList")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/work_goline_order.txt

    go work use
    go list
    
    # Using a new enough Go version, fails later and can suggest 'go work use'.
    env TESTGO_VERSION=go1.21.2
    env TESTGO_VERSION_SWITCH=switch
    cp go.work.orig go.work
    ! go list
    stderr '^go: module . listed in go.work file requires go >= 1.21.2, but go.work lists go 1.21.1; to update it:\n\tgo work use$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 977 bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/internal/NativeDependentBinariesResolutionStrategyTestSupport.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.test.internal;
    
    import com.google.common.collect.Lists;
    import org.gradle.nativeplatform.internal.NativeBinarySpecInternal;
    import org.gradle.nativeplatform.internal.NativeDependentBinariesResolutionStrategy;
    import org.gradle.nativeplatform.test.NativeTestSuiteBinarySpec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrSpec.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.plugins.antlr.internal;
    
    import com.google.common.collect.Lists;
    
    import java.io.File;
    import java.io.Serializable;
    import java.util.List;
    import java.util.Set;
    
    public class AntlrSpec implements Serializable {
    
        private List<String> arguments;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/modulemap/GenerateModuleMapFile.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.internal.modulemap;
    
    import com.google.common.collect.Lists;
    import com.google.common.io.Files;
    import org.apache.commons.io.FileUtils;
    import org.gradle.api.UncheckedIOException;
    import org.gradle.api.specs.Spec;
    
    import java.io.File;
    import java.io.IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/PathJavadocOptionFileOption.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.external.javadoc.internal;
    
    import com.google.common.collect.Lists;
    
    import java.io.File;
    import java.io.IOException;
    import java.util.List;
    
    public class PathJavadocOptionFileOption extends AbstractListJavadocOptionFileOption<List<File>> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/SymbolExtractor.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain.internal;
    
    import com.google.common.collect.Lists;
    import org.gradle.api.Action;
    import org.gradle.internal.operations.BuildOperationExecutor;
    import org.gradle.internal.operations.BuildOperationQueue;
    import org.gradle.internal.work.WorkerLeaseService;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/OptionsFileArgsWriter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain.internal;
    
    import com.google.common.collect.Lists;
    import org.gradle.api.Action;
    
    import java.io.File;
    import java.util.List;
    
    public class OptionsFileArgsWriter implements Action<List<String>> {
        private final File tempDir;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top