Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 77 for appendPtr (0.13 sec)

  1. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    	warningMessages = append(warningMessages, featureWarningMessages...)
    
    	deprecatedErrors, deprecatedWarningMessages := checkDeprecatedSettings(iopls)
    	if deprecatedErrors != nil {
    		validationErrors = util.AppendErr(validationErrors, deprecatedErrors)
    	}
    	warningMessages = append(warningMessages, deprecatedWarningMessages...)
    	return validationErrors, strings.Join(warningMessages, "\n")
    }
    
    // Converts from struct paths to helm paths
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/release/content/script.js

                var link = $("<a></a>").attr("href", issue["link"]).text(issue["key"]);
                $("<li></li>").append(document.createTextNode("["), link, document.createTextNode("] - " + issue["summary"])).appendTo(list);
              });
              list.slideDown("slow");
            }
          },
          timeout: 10000,
          error: function() {
            finishAnimation();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/net/netip/fuzz_test.go

    type appendMarshaler interface {
    	encoding.TextMarshaler
    	AppendTo([]byte) []byte
    }
    
    // checkTextMarshalMatchesAppendTo checks that x's MarshalText matches x's AppendTo.
    func checkTextMarshalMatchesAppendTo(t *testing.T, x appendMarshaler) {
    	buf, err := x.MarshalText()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	buf2 := make([]byte, 0, len(buf))
    	buf2 = x.AppendTo(buf2)
    	if !bytes.Equal(buf, buf2) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 20 23:46:23 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  4. cmd/xl-storage-format_test.go

    				fi.DataDir = mustGetUUID()
    				ids[i] = fi.VersionID
    				fi.ModTime = fi.ModTime.Add(-time.Second)
    				xl.AddVersion(fi)
    			}
    			// Encode all. This is used for benchmarking.
    			enc, err := xl.AppendTo(nil)
    			if err != nil {
    				b.Fatal(err)
    			}
    			b.Logf("Serialized size: %d bytes", len(enc))
    			rng := rand.New(rand.NewSource(0))
    			dump := make([]byte, len(enc))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/CollectingMacroLookup.java

            if (visible == null || visible.isEmpty()) {
                return initialDirectives;
            }
            return Iterators.concat(initialDirectives, visible.values().iterator());
        }
    
        public void appendTo(CollectingMacroLookup lookup) {
            collectAll();
            if (visible != null) {
                for (Map.Entry<File, IncludeDirectives> entry : visible.entrySet()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/MethodDescription.java

            }
            if (owner != null) {
                sb.append(owner).append("#");
            }
            sb.append(name);
    
            if (parameterTypes != null) {
                sb.append("(");
                Joiner.on(", ").appendTo(sb, parameterTypes);
                sb.append(")");
            }
    
            return sb.toString();
        }
    
        public static MethodDescription name(String name) {
            return new MethodDescription(name);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. src/internal/zstd/window_test.go

    		t.Errorf("wrong data length: got: %d, want: %d", w.len(), len(tail))
    	}
    
    	var from, to uint32
    	for from = 0; from <= uint32(len(tail)); from++ {
    		for to = from; to <= uint32(len(tail)); to++ {
    			got := w.appendTo(nil, from, to)
    			want := tail[from:to]
    
    			if !bytes.Equal(got, want) {
    				t.Errorf("wrong data at [%d:%d]: got %q, want %q", from, to, got, want)
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:05:09 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. operator/pkg/helmreconciler/prune.go

    		var errs util.Errors
    		if all {
    			errs = util.AppendErr(errs, h.deleteResources(nil, labels, "", objects, all))
    		} else {
    			for cname, manifest := range manifests.Consolidated() {
    				errs = util.AppendErr(errs, h.deleteResources(object.AllObjectHashes(manifest), labels, cname, objects, all))
    			}
    		}
    		return errs.ToError()
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/ErrorToWarnRewritePolicy.java

    package org.codelibs.fess.util;
    
    import java.util.Arrays;
    
    import org.apache.logging.log4j.Level;
    import org.apache.logging.log4j.core.Core;
    import org.apache.logging.log4j.core.LogEvent;
    import org.apache.logging.log4j.core.appender.rewrite.RewritePolicy;
    import org.apache.logging.log4j.core.config.plugins.Plugin;
    import org.apache.logging.log4j.core.config.plugins.PluginAttribute;
    import org.apache.logging.log4j.core.config.plugins.PluginFactory;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/PluginUnderTestMetadata.java

            saveProperties(properties, outputFile);
        }
    
        private String implementationClasspath() {
            StringBuilder implementationClasspath = new StringBuilder();
            Joiner.on(File.pathSeparator).appendTo(implementationClasspath, getPaths());
            return implementationClasspath.toString();
        }
    
        private void saveProperties(Properties properties, File outputFile) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top