Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 143 for reachable (0.18 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go

    	{48, "EADDRINUSE", "address already in use"},
    	{49, "EADDRNOTAVAIL", "can't assign requested address"},
    	{50, "ENETDOWN", "network is down"},
    	{51, "ENETUNREACH", "network is unreachable"},
    	{52, "ENETRESET", "network dropped connection on reset"},
    	{53, "ECONNABORTED", "software caused connection abort"},
    	{54, "ECONNRESET", "connection reset by peer"},
    	{55, "ENOBUFS", "no buffer space available"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.6K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Adds a failure if the key is a reserved attribute of Google Test
      // testcase tags.  Returns true if the property is valid.
      // TODO(russr): Validate attribute names are legal and human readable.
      static bool ValidateTestProperty(const std::string& xml_element,
                                       const TestProperty& test_property);
    
      // Adds a test part result to the list.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Adds a failure if the key is a reserved attribute of Google Test
      // testcase tags.  Returns true if the property is valid.
      // TODO(russr): Validate attribute names are legal and human readable.
      static bool ValidateTestProperty(const std::string& xml_element,
                                       const TestProperty& test_property);
    
      // Adds a test part result to the list.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                    }
                }
                problems.add(new ModelProblemCollectorRequest(Severity.FATAL, ModelProblem.Version.BASE)
                        .setMessage("Non-readable POM " + modelSource.getLocation() + ": " + msg)
                        .setException(e));
                throw problems.newModelBuildingException();
            }
    
            if (modelSource instanceof FileModelSource) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. hack/local-up-cluster.sh

        kube::util::write_client_kubeconfig "${CONTROLPLANE_SUDO}" "${CERT_DIR}" "${ROOT_CA_FILE}" "${API_HOST}" "${API_SECURE_PORT}" admin
        ${CONTROLPLANE_SUDO} chown "${USER}" "${CERT_DIR}/client-admin.key" # make readable for kubectl
    
        # Wait for kube-apiserver to come up before launching the rest of the components.
        echo "Waiting for apiserver to come up"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.cc

          unreachable_nodes.erase(unreachable_nodes.begin() + 5,
                                  unreachable_nodes.end());
        }
    
        return errors::InvalidArgument(
            "Found unreachable nodes, most likely source and sink nodes not "
            "connected: ",
            absl::StrJoin(unreachable_nodes, ", "));
      }
    
      std::vector<Node*> topo;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route.go

    	out.ExposeHeaders = strings.Join(in.ExposeHeaders, ",")
    	if in.MaxAge != nil {
    		out.MaxAge = strconv.FormatInt(in.MaxAge.GetSeconds(), 10)
    	}
    	return &out
    }
    
    // GetRouteOperation returns readable route description for trace.
    func GetRouteOperation(in *route.Route, vsName string, port int) string {
    	path := "/*"
    	m := in.GetMatch()
    	ps := m.GetPathSpecifier()
    	if ps != nil {
    		switch ps.(type) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

          llvm::formatv("host_compute_channel_{0}_retvals",
                        (communication_key_index))
              .str();
    
      // Use a unique name when sending just the IfRegion predicate.  This is
      // for readable and to match the key in the TF2XLA bridge.
      if (clustered_ops.size() == 1 && llvm::isa<mlir::TF::IfRegionOp>(op) &&
          external_operands.size() == 1) {
        args_communication_key =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/xcoff.go

    	// However, this is not yet possible for .text because of some R_ADDR relocations
    	// inside RODATA symbols.
    	// .data and .bss are position-independent so their address start inside an unreachable
    	// segment during execution to force segfault if something is wrong.
    	XCOFFTEXTBASE = 0x100000000 // Start of text address
    	XCOFFDATABASE = 0x200000000 // Start of data address
    )
    
    // File Header
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		t.Fatalf("input config does not have exactly one resource: %s", encryptionConfigPath)
    	}
    	for _, transformer := range encryptionConfiguration.Transformers {
    		return transformer
    	}
    	panic("unreachable")
    }
    
    func TestIsKMSv2ProviderHealthyError(t *testing.T) {
    	probe := &kmsv2PluginProbe{name: "testplugin"}
    
    	testCases := []struct {
    		desc           string
    		expectedErr    string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
Back to top