Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 88 for readArg (0.25 sec)

  1. android/guava/src/com/google/common/collect/Multimaps.java

          stream.writeObject(factory);
          stream.writeObject(backingMap());
        }
    
        @GwtIncompatible // java.io.ObjectInputStream
        @J2ktIncompatible
        @SuppressWarnings("unchecked") // reading data stored by writeObject
        private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
          stream.defaultReadObject();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Multimaps.java

          stream.writeObject(factory);
          stream.writeObject(backingMap());
        }
    
        @GwtIncompatible // java.io.ObjectInputStream
        @J2ktIncompatible
        @SuppressWarnings("unchecked") // reading data stored by writeObject
        private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
          stream.defaultReadObject();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. src/time/format.go

    }
    
    // String returns the time formatted using the format string
    //
    //	"2006-01-02 15:04:05.999999999 -0700 MST"
    //
    // If the time has a monotonic clock reading, the returned string
    // includes a final field "m=±<value>", where value is the monotonic
    // clock reading formatted as a decimal number of seconds.
    //
    // The returned string is meant for debugging; for a stable serialized
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    				Spec: v1.ServiceSpec{
    					Type:            "ClusterIP",
    					SessionAffinity: "None",
    				},
    			},
    		},
    	}
    	return pods, svc
    }
    
    func streamTestData() (io.Reader, *v1.PodList, *v1.ServiceList) {
    	pods, svc := testData()
    	r, w := io.Pipe()
    	go func() {
    		defer w.Close()
    		w.Write([]byte(runtime.EncodeOrDie(corev1Codec, pods)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        val editor = cache.edit("k1")!!
        assertThat(cache["k1"]).isNull()
        editor.commit()
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
      fun `Windows cannot write while reading`(parameters: Pair<FileSystem, Boolean>) {
        setUp(parameters.first, parameters.second)
        Assumptions.assumeTrue(windows)
    
        set("k1", "a", "a")
        val snapshot = cache["k1"]!!
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  6. pkg/apis/certificates/validation/validation_test.go

    	template := &x509.CertificateRequest{
    		Subject: pkix.Name{
    			Organization: []string{"testing-org"},
    		},
    	}
    
    	_, key, err := ed25519.GenerateKey(rand.Reader)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	csrDER, err := x509.CreateCertificateRequest(rand.Reader, template, key)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	csrPemBlock := &pem.Block{
    		Type:  "CERTIFICATE REQUEST",
    		Bytes: csrDER,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            }
    
            eventSpyDispatcher.onEvent(toolchainsRequest);
    
            slf4jLogger.debug(
                    "Reading global toolchains from '{}'",
                    getLocation(toolchainsRequest.getGlobalToolchainsSource(), globalToolchainsFile));
            slf4jLogger.debug(
                    "Reading user toolchains from '{}'",
                    getLocation(toolchainsRequest.getUserToolchainsSource(), userToolchainsFile));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    func ReadWorkFile(path string) (*modfile.WorkFile, error) {
    	path = base.ShortPath(path) // use short path in any errors
    	workData, err := fsys.ReadFile(path)
    	if err != nil {
    		return nil, fmt.Errorf("reading go.work: %w", err)
    	}
    
    	f, err := modfile.ParseWork(path, workData, nil)
    	if err != nil {
    		return nil, fmt.Errorf("errors parsing go.work:\n%w", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      }
    
      for (int input : func_inputs) {
        auto& tensor = *subgraph.tensors.at(input);
        auto type_or_err = tfl::GetTensorType(tensor, builder);
        if (!type_or_err.ok()) {
          emitError(func_loc, "error reading argument types")
              << type_or_err.status().ToString();
          return type_or_err.status();
        }
        auto type = std::move(type_or_err).value();
        input_types.push_back(type);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                        }
                    }
                }
    
                configurations.conf.incoming.afterResolve {
                    // afterResolve will trigger the problem when reading
                    it.resolutionResult.allComponents {
                        println "Success for \${it.id}"
                    }
                }
            """
    
            when:
            repositoryInteractions {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top