Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 797 for aborted (0.2 sec)

  1. pkg/test/csrctrl/authority/policies.go

    			unrecognized = append(unrecognized, usage)
    		}
    	}
    
    	var sorted sortedExtKeyUsage
    	for eku := range extKeyUsages {
    		sorted = append(sorted, eku)
    	}
    	sort.Sort(sorted)
    
    	if len(unrecognized) > 0 {
    		return 0, nil, fmt.Errorf("unrecognized usage values: %q", unrecognized)
    	}
    
    	return keyUsage, []x509.ExtKeyUsage(sorted), nil
    }
    
    type sortedExtKeyUsage []x509.ExtKeyUsage
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 17:06:22 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultVersionCatalog.java

        }
    
        public List<String> getLibraryAliases() {
            return libraries.keySet()
                .stream()
                .sorted()
                .collect(Collectors.toList());
        }
    
        public List<String> getBundleAliases() {
            return bundles.keySet()
                .stream()
                .sorted()
                .collect(Collectors.toList());
        }
    
        public DependencyModel getDependencyData(String alias) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/SortedSetMultimap.java

       * not necessarily a {@link SortedMap}: A {@code SortedSetMultimap} must expose the <i>values</i>
       * for a given key in sorted order, but it need not expose the <i>keys</i> in sorted order.
       * Individual {@code SortedSetMultimap} implementations, like those built with {@link
       * MultimapBuilder#treeKeys()}, may make additional guarantees.
       */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 24 17:47:51 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  4. src/sort/example_test.go

    	s := []int{5, 2, 6, 3, 1, 4} // unsorted
    	sort.Ints(s)
    	fmt.Println(s)
    	// Output: [1 2 3 4 5 6]
    }
    
    func ExampleIntsAreSorted() {
    	s := []int{1, 2, 3, 4, 5, 6} // sorted ascending
    	fmt.Println(sort.IntsAreSorted(s))
    
    	s = []int{6, 5, 4, 3, 2, 1} // sorted descending
    	fmt.Println(sort.IntsAreSorted(s))
    
    	s = []int{3, 2, 4, 1, 5} // unsorted
    	fmt.Println(sort.IntsAreSorted(s))
    
    	// Output: true
    	// false
    	// false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:29:29 UTC 2017
    - 2.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

      /**
       * Returns a builder that creates immutable sorted maps whose keys are ordered by their natural
       * ordering. The sorted maps use {@link Ordering#natural()} as the comparator.
       */
      public static <K extends Comparable<?>, V> Builder<K, V> naturalOrder() {
        return new Builder<>(Ordering.natural());
      }
    
      /**
       * Returns a builder that creates immutable sorted maps with an explicit comparator. If the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  6. src/go/format/format.go

    			// Imports are always first.
    			return false
    		}
    		if d.Lparen.IsValid() {
    			// For now assume all grouped imports are unsorted.
    			// TODO(gri) Should check if they are sorted already.
    			return true
    		}
    		// Ungrouped imports are sorted by default.
    	}
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/ClasspathManifest.kt

        @Input
        val runtime = externalDependencies.elements.map { it.map { it.asFile.name }.sorted() }
    
        @get:Internal
        abstract val externalDependencies: ConfigurableFileCollection
    
        @Input
        val projects = projectDependencies.elements.map { it.map { it.toGradleModuleName() }.sorted() }
    
        @get:OutputFile
        abstract val manifestFile: RegularFileProperty
    
        @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:26:58 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. src/runtime/testdata/testprogcgo/sigthrow.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // This program will abort.
    
    /*
    #include <stdlib.h>
    */
    import "C"
    
    func init() {
    	register("Abort", Abort)
    }
    
    func Abort() {
    	C.abort()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 26 21:17:38 UTC 2021
    - 312 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyUnresolvedModuleIntegrationTest.groovy

            'returns uncritical error'      | false | 'expectGetUnauthorized' | 'assertDependencyMetaDataUnauthorizedError'
    
            abortDescriptor = abort ? 'aborts' : 'does not abort'
        }
    
        def "fails build and aborts repository search if HTTP connection #reason when resolving artifact for found module"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/SampleElements.java

      public static class Chars extends SampleElements<Character> {
        public Chars() {
          // elements aren't sorted, to better test SortedSet iteration ordering
          super('b', 'a', 'c', 'd', 'e');
        }
      }
    
      public static class Enums extends SampleElements<AnEnum> {
        public Enums() {
          // elements aren't sorted, to better test SortedSet iteration ordering
          super(AnEnum.B, AnEnum.A, AnEnum.C, AnEnum.D, AnEnum.E);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top