Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 261 for writeList (0.11 sec)

  1. src/mdo/writer-stax.vm

        }
    
    #if ( $locationTracking )
        private <T> void writeList(String tagName, List<T> list, XMLStreamWriter serializer, InputLocationTracker locationTracker, ElementWriter<T> writer) throws IOException, XMLStreamException {
            writeList(tagName, false, list, serializer, locationTracker, writer);
    #else
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  2. src/mdo/writer.vm

            public void write(T t) throws IOException;
        }
    
        private <T> void writeList(String tagName, List<T> list, XmlSerializer serializer, ElementWriter<T> writer) throws IOException {
            writeList(tagName, false, list, serializer, writer);
        }
    
        private <T> void writeList(String tagName, boolean flat, List<T> list, XmlSerializer serializer, ElementWriter<T> writer) throws IOException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/composite/whitelist.go

    Robert Findley <******@****.***> 1647470577 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 00:08:36 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  4. pkg/util/tolerations/tolerations_test.go

    			input := genTolerations()
    			whitelist := append(genTolerations(), genToleration()) // Non-empty
    			if VerifyAgainstWhitelist(input, whitelist) {
    				for _, tol := range input {
    					require.True(t, isContained(tol, whitelist), debugMsg(input, whitelist))
    				}
    			} else {
    				uncontained := false
    				for _, tol := range input {
    					if !isContained(tol, whitelist) {
    						uncontained = true
    						break
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 26 22:25:49 UTC 2019
    - 11.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java

                ProjectDependencyGraph projectDependencyGraph, Collection<? extends MavenProject> whiteList) {
            this.projectDependencyGraph =
                    Objects.requireNonNull(projectDependencyGraph, "projectDependencyGraph cannot be null");
    
            this.whiteList = new IdentityHashMap<>();
    
            for (MavenProject project : whiteList) {
                this.whiteList.put(project, null);
            }
        }
    
        /**
         * @since 3.5.0
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. plugin/pkg/admission/podtolerationrestriction/admission.go

    		whitelist, err := p.getNamespaceTolerationsWhitelist(a.GetNamespace())
    		whitelistScope := "namespace"
    		if err != nil {
    			return err
    		}
    
    		// If the namespace has not specified its tolerations whitelist,
    		// fall back to cluster's whitelist of tolerations.
    		if whitelist == nil {
    			whitelist = p.pluginConfig.Whitelist
    			whitelistScope = "cluster"
    		}
    
    		if len(whitelist) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 29 20:07:59 UTC 2020
    - 8.3K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/http2/Http2Test.kt

        frame.writeByte(Http2.TYPE_SETTINGS)
        frame.writeByte(FLAG_NONE)
        frame.writeInt(0) // Settings are always on the connection stream 0.
        frame.writeShort(1) // SETTINGS_HEADER_TABLE_SIZE
        frame.writeInt(reducedTableSizeBytes)
        frame.writeShort(2) // SETTINGS_ENABLE_PUSH
        frame.writeInt(0)
        reader.nextFrame(
          requireSettings = false,
          object : BaseTestHandler() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/EncoderExtensions.java

            encoder.writeInt(array.length);
            writeInts(encoder, array);
        }
    
        public static void writeInts(Encoder encoder, int[] array) throws IOException {
            for (int e : array) {
                encoder.writeInt(e);
            }
        }
    
        public static void writeLengthPrefixedLongs(Encoder encoder, long[] array) throws IOException {
            encoder.writeInt(array.length);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. plugin/pkg/admission/podtolerationrestriction/admission_test.go

    				}
    				namespace.Annotations = map[string]string{NSDefaultTolerations: string(tolerationStr)}
    			}
    
    			if test.whitelist != nil {
    				tolerationStr, err := json.Marshal(test.whitelist)
    				if err != nil {
    					t.Errorf("error in marshalling namespace whitelist %v", test.whitelist)
    				}
    				namespace.Annotations[NSWLTolerations] = string(tolerationStr)
    			}
    
    			mockClient := fake.NewSimpleClientset(namespace)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. plugin/pkg/admission/gc/gc_admission.go

    		// ownerRef.
    		whiteList := []whiteListItem{
    			{
    				groupResource: schema.GroupResource{Resource: "pods"},
    				subresource:   "status",
    			},
    		}
    		return &gcPermissionsEnforcement{
    			Handler:   admission.NewHandler(admission.Create, admission.Update),
    			whiteList: whiteList,
    		}, nil
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top