Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for worklist (0.34 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

      while (!work_list.empty()) {
        auto work_item = work_list.pop_back_val();
        if (visited.contains(work_item)) continue;
        PropagateUsage(work_item.first, value, work_item.second, &work_list,
                       arguments_to_erase);
        visited.insert(work_item);
      }
    }
    
    // Returns ID for identifying a resource.
    std::tuple<llvm::StringRef, llvm::StringRef, llvm::StringRef> GetResourceKey(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

            if (!llvm::isa<TransposeOp>(user)) work_list.push_back(user);
          }
        }
      });
    
      while (!work_list.empty()) {
        Operation* op = work_list.pop_back_val();
        if (direction_ == MoveTransposeDirection::kBegin) {
          MoveTransposeBefore(op, &work_list);
        } else if (direction_ == MoveTransposeDirection::kEnd) {
          MoveTransposeAfter(op, &work_list, fold_transpose_in_ops_);
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. src/go/ast/walk.go

    	case *IncDecStmt:
    		Walk(v, n.X)
    
    	case *AssignStmt:
    		walkList(v, n.Lhs)
    		walkList(v, n.Rhs)
    
    	case *GoStmt:
    		Walk(v, n.Call)
    
    	case *DeferStmt:
    		Walk(v, n.Call)
    
    	case *ReturnStmt:
    		walkList(v, n.Results)
    
    	case *BranchStmt:
    		if n.Label != nil {
    			Walk(v, n.Label)
    		}
    
    	case *BlockStmt:
    		walkList(v, n.List)
    
    	case *IfStmt:
    		if n.Init != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:34:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    	// Cache of already-translated or in-progress types.
    	m map[string]*Type
    
    	// Map from types to incomplete pointers to those types.
    	ptrs map[string][]*Type
    	// Keys of ptrs in insertion order (deterministic worklist)
    	// ptrKeys contains exactly the keys in ptrs.
    	ptrKeys []dwarf.Type
    
    	// Type names X for which there exists an XGetTypeID function with type func() CFTypeID.
    	getTypeIDs map[string]bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. tests/integration/security/fuzz/fuzzers/jwt_tool/jwtconf.ini

    jwksloc =
    # Set this to the base URL of a Collaborator server, somewhere you can read live logs, a Request Bin etc.
    httplistener =
    
    [customising]
    useragent = Mozilla/5.0 (Windows NT 10.0; Win64; x64) jwt_tool
    
    [input]
    wordlist = jwt-common.txt
    commonHeaders = common-headers.txt
    commonPayloads = common-payloads.txt
    
    [argvals]
    # Set at runtime - changes here are ignored
    sigType =
    targetUrl =
    cookies =
    key =
    keyList =
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 21 20:06:01 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

                    try {
                        popularWordsRequestBuilder.execute().getResponse().getItems().stream().forEach(item -> wordList.add(item.getText()));
                    } catch (final SuggesterException e) {
                        logger.warn("Failed to generate popular words.", e);
                    }
    
                    return wordList;
                });
            } catch (final ExecutionException e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. pkg/workloadapi/workload.proto

      // Workload is unhealthy and NOT ready to serve traffic.
      UNHEALTHY = 1;
    }
    
    enum WorkloadType {
      DEPLOYMENT = 0;
      CRONJOB = 1;
      POD = 2;
      JOB = 3;
    }
    
    // PorList represents the ports for a service
    message PortList {
      repeated Port ports = 1;
    }
    
    message Port {
      // Port the service is reached at (frontend).
      uint32 service_port = 1;
      // Port the service forwards to (backend).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/validation_test.go

    			}
    		})
    	}
    }
    
    func TestServiceValidate(t *testing.T) {
    	ports := PortList{
    		{Name: "http", Port: 80, Protocol: protocol.HTTP},
    		{Name: "http-alt", Port: 8080, Protocol: protocol.HTTP},
    	}
    	badPorts := PortList{
    		{Port: 80, Protocol: protocol.HTTP},
    		{Name: "http-alt^", Port: 8080, Protocol: protocol.HTTP},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 23 19:35:35 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java

        protected QueryBuilder queryBuilder = QueryBuilders.matchAllQuery();
        protected int limitPercentage = 100;
        protected long limitNumber = -1;
        protected List<SortBuilder<?>> sortList = new ArrayList<>();
    
        protected String scrollId = null;
    
        protected final AtomicLong docCount = new AtomicLong(0);
        protected final long totalDocNum;
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

                            }
                        }
                    }
    
                    wordsList.add(word);
                    readingList.add(l.toArray(new String[l.size()]));
                }
                if (wordsList.isEmpty()) {
                    return null;
                }
                return new SuggestItem(wordsList.toArray(new String[wordsList.size()]), readingList.toArray(new String[readingList.size()][]),
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top