Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 372 for need (0.07 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            if (type instanceof ConstructedNestedClass) {
                return false;
            }
            // GROOVY-3110: It may be an inner enum defined by this class itself, in which case it does not need to be
            // explicitly qualified by the currentClass name
            String name = type.getName();
            if (currentClass != type && !name.contains(".") && type.getClass().equals(ClassNode.class)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    					// already progressed, no need to advance
    				}
    				c.Dir = RecvOnly
    				t = c.Elem
    			}
    			if dir == SendOnly {
    				// channel dir is <- but channel element E is not a channel
    				// (report same error as for "type _ <-chan<-E")
    				p.syntaxError(fmt.Sprintf("unexpected %s, expected chan", String(t)))
    				// already progressed, no need to advance
    			}
    			return x
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/regalloc.go

    	}
    
    	// Figure out all the destinations we need.
    	dsts := e.destinations[:0]
    	for _, x := range dstReg {
    		dsts = append(dsts, dstRecord{&e.s.registers[x.r], x.v.ID, nil, x.pos})
    	}
    	// Phis need their args to end up in a specific location.
    	for _, v := range e.b.Values {
    		if v.Op != OpPhi {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    				// Linux returns InvalidArg for directory O_DIRECT
    				// we need to keep this fallback code to return correct
    				// errors upwards.
    				return nil, dmTime, errFileNotFound
    			}
    			return nil, dmTime, errUnsupportedDisk
    		}
    		return nil, dmTime, err
    	}
    
    	if discard {
    		// This discard is mostly true for DELETEEs
    		// so we need to make sure we do not keep
    		// page-cache references after.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    // To use this class with EXPECT_PRED_FORMAT assertions such as:
    //
    //   // Verifies that Foo() returns an even number.
    //   EXPECT_PRED_FORMAT1(IsEven, Foo());
    //
    // you need to define:
    //
    //   testing::AssertionResult IsEven(const char* expr, int n) {
    //     if ((n % 2) == 0)
    //       return testing::AssertionSuccess();
    //     else
    //       return testing::AssertionFailure()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    // To use this class with EXPECT_PRED_FORMAT assertions such as:
    //
    //   // Verifies that Foo() returns an even number.
    //   EXPECT_PRED_FORMAT1(IsEven, Foo());
    //
    // you need to define:
    //
    //   testing::AssertionResult IsEven(const char* expr, int n) {
    //     if ((n % 2) == 0)
    //       return testing::AssertionSuccess();
    //     else
    //       return testing::AssertionFailure()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    	utilexec "k8s.io/utils/exec"
    	netutils "k8s.io/utils/net"
    	"k8s.io/utils/ptr"
    	"sigs.k8s.io/knftables"
    )
    
    const (
    	// Our nftables table. All of our chains/sets/maps are created inside this table,
    	// so they don't need any "kube-" or "kube-proxy-" prefix of their own.
    	kubeProxyTable = "kube-proxy"
    
    	// base chains
    	filterPreroutingChain     = "filter-prerouting"
    	filterInputChain          = "filter-input"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    //
    // Note that to test the local filesystem we use an empty value.
    
    namespace tensorflow {
    namespace {
    
    using ::tensorflow::error::Code;
    
    // As we need to test multiple URI schemes we need a parameterized test.
    // Furthermore, since each test creates and deletes files, we will use the same
    // fixture to create new directories in `SetUp`. Each directory will reside in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    input as well.
    
    What this means for build authors is simple: you need to tell Gradle which task properties are inputs and which are outputs. If a task property affects the output, be sure to register it as an input, otherwise the task will be considered up to date when it’s not. Conversely, don’t register properties as inputs if they don’t affect the output, otherwise the task will potentially execute when it doesn’t need to. Also be careful of non-deterministic tasks that may generate different...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  10. cmd/xl-storage-format-v2.go

    			if header.VersionID != uv {
    				continue
    			}
    		}
    		if found {
    			continue
    		}
    
    		// We need a specific version, skip...
    		if versionID != "" && uv != header.VersionID {
    			isLatest = false
    			succModTime = header.ModTime
    			continue
    		}
    
    		// We found what we need.
    		found = true
    		var version xlMetaV2Version
    		if _, err := version.unmarshalV(x.metaV, ver.meta); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top