Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 91 for Rx (0.02 sec)

  1. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryConsumptionIntegrationTest.groovy

                    }
                }
            """
    
            when:
            //compilation should fail, as `rx.observers.Observable` is part of RxJava 1.x, which is a runtime-only dependency.
            file('src/main/java/App.java') << 'public class App { public void run() { rx.observers.Observers.empty(); } }'
    
            then:
            fails 'checkForRxJavaDependency', 'build'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:14:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/error_test.go

    //
    // Errors are declared in place in the form of "error comments",
    // just before (or on the same line as) the offending token.
    //
    // Error comments must be of the form // ERROR rx or /* ERROR rx */
    // where rx is a regular expression that matches the reported error
    // message. The rx text comprises the comment text after "ERROR ",
    // with any white space around it stripped.
    //
    // If the line comment form is used, the reported error's line must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  3. src/go/parser/error_test.go

    	if f := getFile(fset, filename); f != nil {
    		return f.Pos(offset)
    	}
    	return token.NoPos
    }
    
    // ERROR comments must be of the form /* ERROR "rx" */ and rx is
    // a regular expression that matches the expected error message.
    // The special form /* ERROR HERE "rx" */ must be used for error
    // messages that appear immediately after a token, rather than at
    // a token's position, and ERROR AFTER means after the comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  4. src/index/suffixarray/suffixarray_test.go

    			}
    		}
    	}
    }
    
    func testFindAllIndex(t *testing.T, tc *testCase, x *Index, rx *regexp.Regexp, n int) {
    	res := x.FindAllIndex(rx, n)
    	exp := rx.FindAllStringIndex(tc.source, n)
    
    	// check that the lengths match
    	if len(res) != len(exp) {
    		t.Errorf("test %q, FindAllIndex %q (n = %d): expected %d results; got %d", tc.name, rx, n, len(exp), len(res))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

            Comparator<String> comparator = (l, r) -> {
                int lx = lifecycleIds.indexOf(l);
                int rx = lifecycleIds.indexOf(r);
    
                if (lx < 0 || rx < 0) {
                    return rx - lx;
                } else {
                    return lx - rx;
                }
            };
    
            Map<String, Lifecycle> lifecyclesMap = lookupLifecycles();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/testing.go

    	var s scanner
    	s.init(src, handler, comments)
    	for s.tok != _EOF {
    		s.next()
    	}
    }
    
    // CommentMap collects all comments in the given src with comment text
    // that matches the supplied regular expression rx and returns them as
    // []Error lists in a map indexed by line number. The comment text is
    // the comment with any comment markers ("//", "/*", or "*/") stripped.
    // The position for each Error is the position of the token immediately
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:53:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. src/go/types/commentMap_test.go

    	line, col int    // comment position
    	text      string // comment text, excluding "//", "/*", or "*/"
    }
    
    // commentMap collects all comments in the given src with comment text
    // that matches the supplied regular expression rx and returns them as
    // []comment lists in a map indexed by line number. The comment text is
    // the comment with any comment markers ("//", "/*", or "*/") stripped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. test/fixedbugs/issue26411.go

    			continue
    		}
    		output, _ := exec.Command("go", "tool", "compile", "-p=p", filename).CombinedOutput()
    
    		// remove each matching error from the output
    		for _, err := range test.errors {
    			rx := regexp.MustCompile(err)
    			match := rx.Find(output)
    			output = bytes.Replace(output, match, nil, 1) // remove match (which might be nil) from output
    		}
    
    		// at this point all output should have been consumed
    		if len(output) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. cluster/addons/addon-manager/Makefile

    .PHONY: build push
    
    all: build
    
    build:
    	cp ./* $(TEMP_DIR)
    	curl -sSL --retry 5 https://dl.k8s.io/release/$(KUBECTL_VERSION)/bin/linux/$(ARCH)/kubectl > $(TEMP_DIR)/kubectl
    	chmod a+rx $(TEMP_DIR)/kube-addons.sh $(TEMP_DIR)/kube-addons-main.sh $(TEMP_DIR)/kubectl
    
    ifneq ($(ARCH),amd64)
    	# Register /usr/bin/qemu-ARCH-static as the handler for non-x86 binaries in the kernel
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/math/big/arith_amd64.s

    #include "textflag.h"
    
    // This file provides fast assembly versions for the elementary
    // arithmetic operations on vectors implemented in arith.go.
    
    // The carry bit is saved with SBBQ Rx, Rx: if the carry was set, Rx is -1, otherwise it is 0.
    // It is restored with ADDQ Rx, Rx: if Rx was -1 the carry is set, otherwise it is cleared.
    // This is faster than using rotate instructions.
    
    // func addVV(z, x, y []Word) (c Word)
    TEXT ·addVV(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top