Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 372 for sqlite (0.11 sec)

  1. guava/src/com/google/common/base/Splitter.java

        return strategy.iterator(this, sequence);
      }
    
      /**
       * Splits {@code sequence} into string components and returns them as an immutable list. If you
       * want an {@link Iterable} which may be lazily evaluated, use {@link #split(CharSequence)}.
       *
       * @param sequence the sequence of characters to split
       * @return an immutable list of the segments split from the parameter
       * @since 15.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestScraper.java

                        String[] splits = testSuiteAndCase.
                            replace('[', ' ').
                            replace(']', ' ').
                            split("[. ]");
                        String testSuite;
                        String testCase;
                        if (OperatingSystem.current().isMacOsX()) {
                            testSuite = splits[2];
                            testCase = splits[3];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. prow/integ-suite-kind.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    
    # Usage: ./integ-suite-kind.sh TARGET
    # Example: ./integ-suite-kind.sh test.integration.pilot.kube.presubmit
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    # Exit immediately for non zero status
    set -e
    # Check unset variables
    set -u
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.cc

    }
    
    // ================== splitV ========================
    
    LogicalResult UnrollSplitV::matchAndRewrite(TFL::SplitVOp splitv_op,
                                                PatternRewriter& rewriter) const {
      // We need to make sure both splits & split dim are constants.
      auto splits = splitv_op.getSizeSplits().getDefiningOp();
      mlir::DenseIntElementsAttr splits_attr;
      if (!splits || !matchPattern(splits, m_Constant(&splits_attr)))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/stdlib.go

    	return ok
    }
    
    // SplitField splits the field symbol name into type and field
    // components. It must be called only on Field symbols.
    //
    // Example: "File.Package" -> ("File", "Package")
    func (sym *Symbol) SplitField() (typename, name string) {
    	if sym.Kind != Field {
    		panic("not a field")
    	}
    	typename, name, _ = strings.Cut(sym.Name, ".")
    	return
    }
    
    // SplitMethod splits the method symbol name into pointer, receiver,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. cmd/site-replication.go

    			maxPrio = rule.Priority
    		}
    	}
    
    	// leave some gaps in priority numbers for flexibility
    	return maxPrio + 10
    }
    
    // returns a slice with site names participating in site replciation but unspecified while adding
    // a new site.
    func getMissingSiteNames(oldDeps, newDeps set.StringSet, currSites []madmin.PeerInfo) []string {
    	diff := oldDeps.Difference(newDeps)
    	var diffSlc []string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/traffic-splitting/traffic-split-1.yaml

    #$ Used in:
    #$ - site-src/guides/traffic-splitting.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: foo-route
      labels:
        gateway: prod-web-gw
    spec:
      hostnames:
      - foo.example.com
      rules:
      - backendRefs:
        - name: foo-v1
          port: 8080
      - matches:
        - headers:
          - name: traffic
            value: test
        backendRefs:
        - name: foo-v2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 403 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/traffic-splitting/traffic-split-3.yaml

    #$ Used in:
    #$ - site-src/guides/traffic-splitting.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: foo-route
      labels:
        gateway: prod-web-gw
    spec:
      hostnames:
      - foo.example.com
      rules:
      - backendRefs:
        - name: foo-v1
          port: 8080
          weight: 0
        - name: foo-v2
          port: 8080
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 348 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

      // Splits the weights into 4: i, f, c, o.
      const int splits = 4;
    
      Operation* weights_array;
      if (failed(CreateEqualSizeSplitVOp(transposed_weight_kernel, 0, splits,
                                         func_op.getLoc(), builder,
                                         &weights_array)))
        return failure();
    
      // Splits the recurrent_weights into 4:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/convert/DateConversionUtil.java

            }
            final Date date = toDate(str, locale);
            if (date != null) {
                return date;
            }
            final java.sql.Date sqlDate = toSqlDateJdbcEscape(str);
            if (sqlDate != null) {
                return new java.sql.Date(sqlDate.getTime());
            }
            throw new ParseRuntimeException(str);
        }
    
        /**
         * オブジェクトを{@link Calendar}に変換します。
         *
         * @param src
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top