Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for new_state (0.24 sec)

  1. src/cmd/go/internal/vcweb/vcweb.go

    	if err != nil {
    		fmt.Fprintln(w, err)
    	}
    }
    
    // help serves a plain-text summary of the server's supported script language.
    func (s *Server) help(w http.ResponseWriter, req *http.Request) {
    	st, err := s.newState(req.Context(), s.workDir)
    	if err != nil {
    		http.Error(w, err.Error(), http.StatusInternalServerError)
    		return
    	}
    
    	scriptLog := new(strings.Builder)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/partially_decluster_pass.cc

    // a TensorFlow graph.
    //
    // Abstractly, if we have a cluster of this form:
    //
    //   x0 = arg0
    //   x1 = arg1
    //     ...
    //   shape = f(x0, x1, ...)
    //   result = Reshape(input=<something>, new_shape=shape)
    //
    // then pulling `f` out of the cluster may reduce the number of compilations and
    // will never increase the number of compilations.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollection.java

            this.displayName = displayName;
            this.resolver = fileResolver;
            this.dependencyFactory = dependencyFactory;
            this.host = host;
            this.valueState = ValueState.newState(host, ValueCollector::isolated);
            init(EMPTY_COLLECTOR, EMPTY_COLLECTOR);
            filesWrapper = new PathSet();
            buildDependency = dependencyFactory.configurableDependency();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    table CallOptions {
      // The subgraph index that needs to be called.
      subgraph:uint;
    }
    
    table PadOptions {
    }
    
    table PadV2Options {
    }
    
    table ReshapeOptions {
      new_shape:[int];
    }
    
    table SpaceToBatchNDOptions {
    }
    
    table BatchToSpaceNDOptions {
    }
    
    table SkipGramOptions {
      ngram_size: int;
      max_skip_size: int;
      include_all_ngrams: bool;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema.fbs

    table CallOptions {
      // The subgraph index that needs to be called.
      subgraph:uint;
    }
    
    table PadOptions {
    }
    
    table PadV2Options {
    }
    
    table ReshapeOptions {
      new_shape:[int];
    }
    
    table SpaceToBatchNDOptions {
    }
    
    table BatchToSpaceNDOptions {
    }
    
    table SkipGramOptions {
      ngram_size: int;
      max_skip_size: int;
      include_all_ngrams: bool;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top