Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 134 for unreadable (0.18 sec)

  1. src/runtime/mheap.go

    //
    //   - Weak handles are unique and canonical for each byte offset into
    //     an object that a strong pointer may point to, until an object
    //     becomes unreachable.
    //
    //   - Weak handles contain nil as soon as an object becomes unreachable
    //     the first time, before a finalizer makes it reachable again. New
    //     weak handles created after resurrection are newly unique.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/link/internal/loader/loader.go

    		pp := l.getPayload(i)
    		return pp.size
    	}
    	r, li := l.toLocal(i)
    	return int64(r.Sym(li).Siz())
    }
    
    // AttrReachable returns true for symbols that are transitively
    // referenced from the entry points. Unreachable symbols are not
    // written to the output.
    func (l *Loader) AttrReachable(i Sym) bool {
    	return l.attrReachable.Has(i)
    }
    
    // SetAttrReachable sets the reachability property for a symbol (see
    // AttrReachable).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. 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)
  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/crypto/tls/tls_test.go

    				return -1
    			} else if aSuite.flags&suiteECSign == 0 && bSuite.flags&suiteECSign != 0 {
    				return +1
    			}
    			t.Fatalf("two ciphersuites are equal by all criteria: %v and %v", aName, bName)
    			panic("unreachable")
    		}
    		if !slices.IsSortedFunc(prefOrder, isBetter) {
    			t.Error("preference order is not sorted according to the rules")
    		}
    	}
    }
    
    func TestVersionName(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // returning the human-readable C++ or Rust name.
    // If any error occurs during demangling, the input string is returned.
    func Filter(name string, options ...Option) string {
    	ret, err := ToString(name, options...)
    	if err != nil {
    		return name
    	}
    	return ret
    }
    
    // ToString demangles a C++ or Rust symbol name,
    // returning a human-readable C++ or Rust name or an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top