Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 343 for AdTest (0.14 sec)

  1. deps.xml

    			<param name="jar.version" value="1.3.2" />
    			<param name="file.version" value="1.3.2" />
    		</antcall>
    		<!-- kopf -->
    		<get dest="${target.dir}/kopf.zip">
    			<url url="https://github.com/codelibs/elasticsearch-kopf/archive/${kopf.branch}.zip" />
    		</get>
    		<delete dir="${site.dir}/kopf" />
    		<unzip dest="${site.dir}/kopf" src="${target.dir}/kopf.zip">
    			<patternset>
    				<include name="elasticsearch-kopf-${kopf.branch}/_site/**" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:59:50 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_compilation_cluster_signature.cc

    struct SignatureHumanStringAppender {
      explicit SignatureHumanStringAppender(std::string* dest) : dest(dest) {}
      std::string* dest;
      void operator()(const Tensor& arg) {
        absl::StrAppend(dest, "; ", arg.DebugString());
      }
      void operator()(const TensorTypeAndShape& arg) {
        absl::StrAppend(dest, ",", DataTypeString(arg.first));
        absl::StrAppend(dest, " [", absl::StrJoin(arg.second, ","), "]");
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. callbacks/row.go

    			return
    		}
    
    		if isRows, ok := db.Get("rows"); ok && isRows.(bool) {
    			db.Statement.Settings.Delete("rows")
    			db.Statement.Dest, db.Error = db.Statement.ConnPool.QueryContext(db.Statement.Context, db.Statement.SQL.String(), db.Statement.Vars...)
    		} else {
    			db.Statement.Dest = db.Statement.ConnPool.QueryRowContext(db.Statement.Context, db.Statement.SQL.String(), db.Statement.Vars...)
    		}
    
    		db.RowsAffected = -1
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 05:40:41 UTC 2023
    - 581 bytes
    - Viewed (0)
  4. cmd/kubelet/app/server_bootstrap_test.go

    		}
    		s.csr = csr
    
    	case req.Method == "GET" && req.URL.Path == "/apis/certificates.k8s.io/v1/certificatesigningrequests" && (req.URL.RawQuery == "fieldSelector=metadata.name%3Dtest-csr&limit=500&resourceVersion=0" || req.URL.RawQuery == "fieldSelector=metadata.name%3Dtest-csr"):
    		if s.csr == nil {
    			t.Fatalf("no csr")
    		}
    		csr := s.csr.DeepCopy()
    
    		data := mustMarshal(&certapi.CertificateSigningRequestList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/escape/UnicodeEscaper.java

        if (charsSkipped > 0) {
          int endIndex = destIndex + charsSkipped;
          if (dest.length < endIndex) {
            dest = growBuffer(dest, destIndex, endIndex);
          }
          s.getChars(unescapedChunkStart, end, dest, destIndex);
          destIndex = endIndex;
        }
        return new String(dest, 0, destIndex);
      }
    
      /**
       * Returns the Unicode code point of the character at the given index.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/escape/UnicodeEscaper.java

        if (charsSkipped > 0) {
          int endIndex = destIndex + charsSkipped;
          if (dest.length < endIndex) {
            dest = growBuffer(dest, destIndex, endIndex);
          }
          s.getChars(unescapedChunkStart, end, dest, destIndex);
          destIndex = endIndex;
        }
        return new String(dest, 0, destIndex);
      }
    
      /**
       * Returns the Unicode code point of the character at the given index.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  7. src/database/sql/convert.go

    // See go.dev/issue/67401.
    //
    //go:linkname convertAssign
    func convertAssign(dest, src any) error {
    	return convertAssignRows(dest, src, nil)
    }
    
    // convertAssignRows copies to dest the value in src, converting it if possible.
    // An error is returned if the copy would result in loss of information.
    // dest should be a pointer type. If rows is passed in, the rows will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClasspathInferer.java

        public ClasspathInferer() {
            this.classPathCache = new MapMaker().weakKeys().makeMap();
        }
    
        public void getClassPathFor(Class<?> targetClass, Collection<URI> dest) {
            lock.lock();
            try {
                Collection<URI> classPath = classPathCache.get(targetClass);
                if (classPath == null) {
                    Set<Class<?>> visited = new HashSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/sidecar_simulation_test.go

      - backendRefs:
        - kind: Hostname
          group: networking.istio.io
          name: {{.Dest}}
          port: {{.Port | default 80}}
    `, args)
    	case "virtualservice":
    		return tmpl.MustEvaluate(`apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: "{{.Namespace}}{{.Match | replace "*" "wild"}}{{.Dest}}"
      namespace: {{.Namespace}}
      creationTimestamp: "{{.Time}}"
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/TestCountLogger.java

                builder.append(" skipped");
            }
            return builder.toString();
        }
    
        private void append(StringBuilder dest, long count, String noun) {
            dest.append(count);
            dest.append(" ");
            dest.append(noun);
            if (count != 1) {
                dest.append("s");
            }
        }
    
        @Override
        public void beforeSuite(TestDescriptor suite) {
            if (suite.getParent() == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top