Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 131 for NOR (0.02 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemNode.java

        /**
         * Stores information to the virtual file system that we have learned about.
         *
         * Complete information, like {@link FileSystemLocationSnapshot}s, are not touched nor replaced.
         */
        @CheckReturnValue
        FileSystemNode store(VfsRelativePath targetPath, CaseSensitivity caseSensitivity, MetadataSnapshot snapshot, SnapshotHierarchy.NodeDiffListener diffListener);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/stablehlo_custom_call.cc

        return failure();
      }
    
      if (auto attr = mlir::dyn_cast<FlatSymbolRefAttr>(f)) {
        return attr;
      }
    
      op.emitOpError() << "'s attribute '" << kCalledFuncAttrName
                       << "' is neither StringAttr nor FlatSymbolRefAttr";
      return failure();
    }
    
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest_prod.h

    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    // distribution.
    //     * Neither the name of Google Inc. nor the names of its
    // contributors may be used to endorse or promote products derived from
    // this software without specific prior written permission.
    //
    // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/compatibility/MultiVersionTestInterceptor.groovy

                return versionsFrom(coverage.value().newInstance(target, target).call() as List)
            } else {
                throw new RuntimeException("Target class '$target' is not annotated with @${TargetVersions.simpleName} nor with @${TargetCoverage.simpleName}.")
            }
        }
    
        @Override
        protected boolean isAvailable(DefaultVersionedTool version) {
            return true
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. integration-tests/gradle/gradlew

            # possibly modified.
            #
            # NB: a `for` loop captures its iteration list before it begins, so
            # changing the positional parameters here affects neither the number of
            # iterations, nor the values presented in `arg`.
            shift                   # remove old arg
            set -- "$@" "$arg"      # push replacement arg
        done
    fi
    
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/AnnotationProcessorDiscoveringCompilerTest.groovy

        Compiler<JavaCompileSpec> delegate = Stub(Compiler)
    
        AnnotationProcessorDiscoveringCompiler compiler = new AnnotationProcessorDiscoveringCompiler(delegate, detector)
    
        def "when neither processor path nor processor option are given, no processors are used"() {
            when:
            compiler.execute(spec)
            then:
            spec.effectiveAnnotationProcessors == [] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Program.kt

    
    /**
     * A source Kotlin DSL program can be:
     * - empty
     * - a single buildscript block
     * - a single plugins block
     * - a buildscript block followed by a plugins block
     * - a script with neither a buildscript nor a plugins block
     * - a script preceded by a buildscript or plugins block or both
     *
     * The evaluation of a Kotlin DSL program happens, in the general case, in
     * [two stages](https://en.wikipedia.org/wiki/Multi-stage_programming):
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/proxy/translatinghandler_test.go

    			wsstream.IsWebSocketRequestWithStreamCloseProtocol)
    		translatingHandler.ServeHTTP(nil, req)
    		if !delegate.served && !translator.served {
    			t.Errorf("unexpected neither translator nor delegate served")
    			continue
    		}
    		if test.expectTranslator {
    			if !translator.served {
    				t.Errorf("%s: expected translator served, got delegate served", name)
    			}
    		} else if !delegate.served {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/util/testing/fake.go

    func (f *FakeIPVS) AddRealServer(serv *utilipvs.VirtualServer, dest *utilipvs.RealServer) error {
    	if serv == nil || dest == nil {
    		return fmt.Errorf("failed to add destination for service, neither service nor destination shouldn't be nil")
    	}
    	key := toServiceKey(serv)
    	if _, ok := f.Services[key]; !ok {
    		return fmt.Errorf("failed to add destination for service %v, service not found", key.String())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyIntegrationTest.groovy

            classFile.isFile()
            testClassFile.isFile()
            testResults.isDirectory()
    
            and:
            assertTestsExecuted("ThingTest", "ok")
        }
    
        def "build on Groovy project without sources nor groovy dependency"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            buildFile << """
                plugins { id 'groovy' }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top