Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for paib (0.07 sec)

  1. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

      @ArgumentsSource(FileSystemParamProvider::class)
      fun emptyCache(parameters: Pair<FileSystem, Boolean>) {
        setUp(parameters.first, parameters.second)
        cache.close()
        assertJournalEquals()
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
      fun recoverFromInitializationFailure(parameters: Pair<FileSystem, Boolean>) {
        setUp(parameters.first, parameters.second)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                        final String[] pair = s.split("=");
                        if (pair.length == 1) {
                            return new Pair<>(StringUtil.EMPTY, pair[0].trim());
                        }
                        if (pair.length == 2) {
                            return new Pair<>(pair[0].trim(), pair[1].trim());
                        }
                        return null;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			delete(gvksToInvalidFiles, gvk)
    		}
    	}
    
    	type pair struct {
    		old *unstructured.Unstructured
    		new *unstructured.Unstructured
    	}
    
    	// For each valid file, match it with every invalid file of the same GVK
    	validXValidPairs := []pair{}
    	validXInvalidPairs := []pair{}
    	invalidXInvalidPairs := []pair{}
    
    	for gvk, valids := range gvksToValidFiles {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      absl::flat_hash_map<const Node*, Node*> node_images;
    
      // Each entry of src_arg_pairs is a pair whose first element is a node in the
      // original graph that has an output edge in the subgraph, and whose second
      // element is the arg node in the subgraph that it sends to. The vector will
      // be filled in below in AddArgs.
      std::vector<std::pair<const Node*, Node*>> src_arg_pairs;
    
      TF_RETURN_IF_ERROR(CopySubgraphNodes(&node_images));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_function_test.cc

    //      output tensor naming, but it the index is actually an input index)
    struct EdgeSpec : public std::pair<string, string> {
      typedef std::pair<string, string> Base;
    
      // Inherit the set of constructors
      using Base::pair;
    
      string ToString() const { return strings::StrCat(first, "->", second); }
    };
    
    class CApiFunctionTest : public ::testing::Test {
     protected:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/prove.go

    		}
    		s += fmt.Sprintf("0x%x", uint(d))
    	}
    	return s
    }
    
    type pair struct {
    	// a pair of values, ordered by ID.
    	// v can be nil, to mean the zero value.
    	// for booleans the zero value (v == nil) is false.
    	v, w *Value
    	d    domain
    }
    
    // fact is a pair plus a relation for that pair.
    type fact struct {
    	p pair
    	r relation
    }
    
    // a limit records known upper and lower bounds for a value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

                            llvm::to_vector<4>(return_op->getOperandTypes())));
    }
    
    // Lifts reads/writes of resource arguments from func_op and changes its
    // signature. resource_data_types is the (index, data type) pair for each
    // resource argument. handle_updated_arg_value is a caller-provided function
    // that handles the updated value for an resource argument.
    LogicalResult LiftArgRetResourcesForFunction(
        func::FuncOp func_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                }
                project(':b') {
                    apply plugin: 'base'
                    configurations {
                        foo.attributes { $freeRelease }
                        bar.attributes { $paid; $release }
                        'default' {
                            canBeConsumed = false
                        }
                    }
                    ${fooAndBarJars()}
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      absl::flat_hash_set<string> allowlist;
    
      for (auto s : absl::StrSplit(flags->tf_xla_ops_to_cluster, ',')) {
        if (s == "FUSIBLE") {
          for (auto pair : *allowlist_table) {
            allowlist.insert(pair.second.begin(), pair.second.end());
          }
        } else if (allowlist_table->contains(s)) {
          auto v = allowlist_table->at(s);
          allowlist.insert(v.begin(), v.end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm/asm5.go

    		switch p.As {
    		case AADD:
    			as2 = ASUB // ADD -> ADD/SUB pair
    		case ASUB:
    			as2 = AADD // SUB -> SUB/ADD pair
    		case ARSB:
    			as2 = ASUB // RSB -> RSB/SUB pair
    		case AADC:
    			as2 = ASUB // ADC -> ADC/SUB pair
    		case ASBC:
    			as2 = AADD // SBC -> SBC/ADD pair
    		case ARSC:
    			as2 = ASUB // RSC -> RSC/SUB pair
    		default:
    			c.ctxt.Diag("unknown second op for %v", p)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top