Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 70 for changedTo (0.22 sec)

  1. src/cmd/go/alldocs.go

    // the variable <NAME>, run 'go env <NAME>'. To change the default setting,
    // run 'go env -w <NAME>=<VALUE>'. Defaults changed using 'go env -w'
    // are recorded in a Go environment configuration file stored in the
    // per-user configuration directory, as reported by os.UserConfigDir.
    // The location of the configuration file can be changed by setting
    // the environment variable GOENV, and 'go env GOENV' prints the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

            if (val0 >= 0 && val1 >= 0 && val0 != val1) return false;
          }
        }
        return true;
      };
    
      bool changed = true;
      int i = 0;
      const int kMaxIterationCount = 2;
      while (changed && i != kMaxIterationCount) {
        changed = false;
        for (const Node* node : ordered_nodes_) {
          auto* shape_context = shape_refiner_->GetContext(node);
          DCHECK(shape_context != nullptr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

            "description": "VolumeAttributesClass represents a specification of mutable volume attributes defined by the CSI driver. The class can be specified during dynamic provisioning of PersistentVolumeClaims, and changed in the PersistentVolumeClaim spec after provisioning.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__policy__v1_openapi.json

                  }
                ],
                "description": "lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed.  If that is not known, then using the time when the API field changed is acceptable."
              },
              "message": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    	datsize int64
    }
    
    // A note on symType/setSymType below:
    //
    // In the legacy linker, the types of symbols (notably data symbols) are
    // changed during the symtab() phase so as to insure that similar symbols
    // are bucketed together, then their types are changed back again during
    // dodata. Symbol to section assignment also plays tricks along these lines
    // in the case where a relro segment is needed.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

                  }
                ],
                "description": "lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed."
              },
              "observedGeneration": {
                "description": "observedGeneration is the most recent generation observed by this autoscaler.",
                "format": "int64",
                "type": "integer"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    	// by kubecontainer.HashContainer(...).  That way, we can still determine whether an
    	// v1.Container is already running by its hash. (We don't want to restart a container just
    	// because some service changed.)
    	//
    	// Note that there is a race between Kubelet seeing the pod and kubelet seeing the service.
    	// To avoid this users can: (1) wait between starting a service and starting; or (2) detect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

            g->AddControlEdge(recv_at_host_node, edge.dst);
          } else {
            g->AddEdge(recv_at_host_node, index, edge.dst, edge.dst_input);
          }
        }
    
        // Rewrite dst nodes because their input changed.
        for (int i = 0, end = out_edge_info.size(); i < end; i++) {
          const OutEdgeInfo edge = out_edge_info[i];
          if (edge.dst_input == Graph::kControlSlot) {
            continue;
          }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

                  }
                ],
                "description": "lastTransitionTime is the time the condition last transitioned from one status to another. If unset, when a new condition type is added or an existing condition's status is changed, the server defaults this to the current time."
              },
              "lastUpdateTime": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    // until the current GC is done. In particular, it prevents gomaxprocs
    // from changing concurrently.
    //
    // TODO(mknyszek): Once gomaxprocs and the execution tracer can handle
    // being changed/enabled during a GC, remove this.
    var gcsema uint32 = 1
    
    // stopTheWorldWithSema is the core implementation of stopTheWorld.
    // The caller is responsible for acquiring worldsema and disabling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top