Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 139 for negation_0 (0.18 sec)

  1. src/regexp/exec_test.go

    		//   specified; the test will be repeated for each mode.
    		//
    		//     B 	basic			BRE	(grep, ed, sed)
    		//     E 	REG_EXTENDED		ERE	(egrep)
    		//     A	REG_AUGMENTED		ARE	(egrep with negation)
    		//     S	REG_SHELL		SRE	(sh glob)
    		//     K	REG_SHELL|REG_AUGMENTED	KRE	(ksh glob)
    		//     L	REG_LITERAL		LRE	(fgrep)
    		//
    		//     a	REG_LEFT|REG_RIGHT	implicit ^...$
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. istioctl/pkg/describe/describe.go

    					keyAsString("config")
    				return istioConfig, nil
    			}
    		}
    	}
    
    	return "", nil
    }
    
    // TODO simplify this by showing for each matching Destination the negation of the previous HttpMatchRequest
    // and showing the non-matching Destinations.  (The current code is ad-hoc, and usually shows most of that information.)
    func printVirtualService(writer io.Writer, initPrintNum int,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    org.hamcrest.core Tests whether the value is an instance of a class. IsInstanceOf(Class<?>) - Constructor for class org.hamcrest.core.IsInstanceOf Creates a new instance of IsInstanceOf IsNot<T> - Class in org.hamcrest.core Calculates the logical negation of a matcher. IsNot(Matcher<T>) - Constructor for class org.hamcrest.core.IsNot IsNull<T> - Class in org.hamcrest.core Is the value null? IsNull() - Constructor for class org.hamcrest.core.IsNull IsSame<T> - Class in org.hamcrest.core Is the value...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "PXOR", argLength: 2, reg: fp21, asm: "PXOR", commutative: true, resultInArg0: true}, // exclusive or, applied to X regs for float negation.
    
    		{name: "LEAL", argLength: 1, reg: gp11sb, aux: "SymOff", rematerializeable: true, symEffect: "Addr"}, // arg0 + auxint + offset encoded in aux
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/help/helpdoc.go

    This ensures that code making use of v2 features continues to compile
    when, say, GOAMD64=v4 is introduced.
    Code handling the absence of a particular feature level
    should use a negation:
    
    	//go:build !amd64.v2
    
    To keep a file from being considered for any build:
    
    	//go:build ignore
    
    (Any other unsatisfied word will work as well, but "ignore" is conventional.)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. helm-releases/minio-2.0.1.tgz

    storageClassName: {{ $storageClass }} {{- end }} resources: requests: storage: {{ $psize }} {{- end }} {{- end }} {{- end }} minio/.helmignore # Patterns to ignore when building packages. # This supports shell glob matching, relative path matching, and # negation (prefixed with !). Only one pattern per line. .DS_Store # Common VCS dirs .git/ .gitignore .bzr/ .bzrignore .hg/ .hgignore .svn/ # Common backup files *.swp *.bak *.tmp *~ # Various IDEs .project .idea/ *.tmproj # OWNERS file for Kubernetes OWNERS...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 31 09:09:09 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    				q := *NewScaledQuantity(j, Scale(k))
    				if asDec {
    					q.AsDec()
    				}
    
    				b := q.DeepCopy()
    				b.Neg()
    				b.Neg()
    				if b.Cmp(q) != 0 {
    					t.Errorf("double negation did not cancel: %s", &q)
    				}
    			}
    		}
    	}
    }
    
    func TestQuantityAsApproximateFloat64(t *testing.T) {
    	table := []struct {
    		in  Quantity
    		out float64
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. src/regexp/testdata/testregex.c

    T("  specified; the test will be repeated for each mode.\n");
    T("\n");
    T("    B 	basic			BRE	(grep, ed, sed)\n");
    T("    E 	REG_EXTENDED		ERE	(egrep)\n");
    T("    A	REG_AUGMENTED		ARE	(egrep with negation)\n");
    T("    S	REG_SHELL		SRE	(sh glob)\n");
    T("    K	REG_SHELL|REG_AUGMENTED	KRE	(ksh glob)\n");
    T("    L	REG_LITERAL		LRE	(fgrep)\n");
    T("\n");
    T("    a	REG_LEFT|REG_RIGHT	implicit ^...$\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/deadness_analysis.cc

        return operands_;
      }
      absl::Span<Predicate* const> operands() const { return operands_; }
    
     private:
      std::vector<Predicate*> operands_;
    };
    
    // Represents a logical negation of a set of predicates.
    class NotPredicate : public Predicate {
     public:
      explicit NotPredicate(int64_t id, Predicate* operand)
          : Predicate(id), operands_({operand}) {}
    
      string ToString() const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. helm-releases/minio-1.0.2.tgz

    storageClassName: {{ $storageClass }} {{- end }} resources: requests: storage: {{ $psize }} {{- end }} {{- end }} {{- end }} minio/.helmignore # Patterns to ignore when building packages. # This supports shell glob matching, relative path matching, and # negation (prefixed with !). Only one pattern per line. .DS_Store # Common VCS dirs .git/ .gitignore .bzr/ .bzrignore .hg/ .hgignore .svn/ # Common backup files *.swp *.bak *.tmp *~ # Various IDEs .project .idea/ *.tmproj # OWNERS file for Kubernetes OWNERS...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 24 18:58:05 UTC 2021
    - 13.6K bytes
    - Viewed (0)
Back to top