Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 216 for NOR (1.85 sec)

  1. src/crypto/x509/verify.go

    			}
    		}
    
    		if len(localPartBytes) == 0 {
    			return mailbox, false
    		}
    
    		// From RFC 3696, Section 3:
    		// “period (".") may also appear, but may not be used to start
    		// or end the local part, nor may two or more consecutive
    		// periods appear.”
    		twoDots := []byte{'.', '.'}
    		if localPartBytes[0] == '.' ||
    			localPartBytes[len(localPartBytes)-1] == '.' ||
    			bytes.Contains(localPartBytes, twoDots) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/RegularImmutableMap.java

        }
        return new RegularImmutableMap<K, V>(hashTable, alternatingKeysAndValues, n);
      }
    
      /**
       * Returns a hash table for the specified keys and values, and ensures that neither keys nor
       * values are null. This method may update {@code alternatingKeysAndValues} if there are duplicate
       * keys. If so, the return value will indicate how many entries are still valid, and will also
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Multimap.java

       *
       * <p>Changes to the returned map or the collections that serve as its values will update the
       * underlying multimap, and vice versa. The map does not support {@code put} or {@code putAll},
       * nor do its entries support {@link Entry#setValue setValue}.
       */
      Map<K, Collection<V>> asMap();
    
      // Comparison and hashing
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritePPC64latelower.go

    			break
    		}
    		if !(v.Block == z.Block) {
    			break
    		}
    		v.reset(OpPPC64CMPconst)
    		v.AuxInt = int64ToAuxInt(0)
    		v.AddArg(convertPPC64OpToOpCC(z))
    		return true
    	}
    	// match: (CMPconst [0] z:(NOR x y))
    	// cond: v.Block == z.Block
    	// result: (CMPconst [0] convertPPC64OpToOpCC(z))
    	for {
    		if auxIntToInt64(v.AuxInt) != 0 {
    			break
    		}
    		z := v_0
    		if z.Op != OpPPC64NOR {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. src/net/tcpsock.go

    // If a field is negative, the corresponding socket-level option will be left unchanged.
    //
    // Note that prior to Windows 10 version 1709, neither setting Idle and Interval
    // separately nor changing Count (which is usually 10) is supported.
    // Therefore, it's recommended to set both Idle and Interval to non-negative values
    // in conjunction with a -1 for Count on those old Windows if you intend to customize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

          biasadd_op = llvm::cast<TF::BiasAddOp>(consumer_op);
          final_op_is_bts = false;
        }
      } else {
        return rewriter.notifyMatchFailure(
            consumer_op, "next op is neither BiasAdd nor BatchToSpaceND");
      }
    
      std::optional<ArrayAttr> dilations_attr = ExtractDilationsAttrFromBlockShape(
          stb_op.getBlockShape(), bts_op.getBlockShape(), expand_axis, rewriter);
      if (!dilations_attr.has_value()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/insert_weight_param.mlir

      // CHECK: return %[[DOT]]
    }
    
    // -----
    
    // Test that q/dq pair is not inserted between constant and XlaCallModule op
    // whose entry function name does not include conv nor dot_general.
    
    func.func @no_qdq_except_conv_and_dot_general(%arg0: tensor<2x3x2xi64>) -> tensor<2x3x2x2xf32> attributes {tf._original_func_name = "main_0"} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Multimap.java

       *
       * <p>Changes to the returned map or the collections that serve as its values will update the
       * underlying multimap, and vice versa. The map does not support {@code put} or {@code putAll},
       * nor do its entries support {@link Entry#setValue setValue}.
       */
      Map<K, Collection<V>> asMap();
    
      // Comparison and hashing
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    ----
    
    The class `HttpResponse` represents a good candidate for a unit test.
    It does not reach out to any other classes nor does it use the Gradle API.
    
    .HttpResponseTest.groovy
    [source,groovy]
    ----
    include::{snippetsPath}/developingPlugins/testingPlugins/groovy/url-verifier-plugin/src/test/groovy/org/myorg/http/HttpResponseTest.groovy[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/DestroyerTaskCommandLineOrderIntegrationTest.groovy

                result.assertTaskOrder(generateBar.fullPath, TaskOrderSpecs.any(generate.fullPath, cleanBar.fullPath))
            }
        }
    
        def "a task that is neither a producer nor a destroyer can run concurrently with destroyers"() {
            def foo = subproject(':foo')
            def bar = subproject(':bar')
    
            def cleanFoo = foo.task('cleanFoo').destroys('build/foo').shouldBlock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 14:13:02 UTC 2022
    - 21.1K bytes
    - Viewed (0)
Back to top