Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 132 for none_of (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

      // don't need to consider ".source"/".Source" because the nodes with this
      // suffix are skipped by the caller and will not be added to the graph.
      auto prefixes = GlobalOpPrefixes();
      if (std::none_of(prefixes->begin(), prefixes->end(), [&](std::string prefix) {
            return op_name.consume_front(prefix);
          })) {
        return errors::FailedPrecondition("op node '", op_name.str(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          return changed;
        }
      }
      return changed;
    }
    
    bool ShapeInference::RefineWithInferTypeOpInterface(
        InferTypeOpInterface infer_ti) {
      Operation* op = infer_ti.getOperation();
      if (none_of(op->getResultTypes(), CanBeRefined)) {
        LLVM_DEBUG(llvm::dbgs() << "Skipping inference for statically shaped op '"
                                << op->getName() << "'.\n");
        return false;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          }
        }
    
        int buffer_index = buffers_.size();
        // If a constant is returned as subgraph's output, this constant cannot be
        // deduplicated.
        const bool not_returned_by_subgraph = llvm::none_of(
            value.getUsers(),
            [](Operation* user) { return llvm::isa<mlir::func::ReturnOp>(user); });
        // TODO(ashwinm): Check if for stateful tensors, if it is also needed to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (2)
  4. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/PosixFilePermissionConverterTest.groovy

            expect:
            PosixFilePermissionConverter.convertToInt(perms) == intValue
    
            where:
            perms                                                                |       intValue
            EnumSet.noneOf(PosixFilePermission)                                  |       0
            EnumSet.allOf(PosixFilePermission)                                   |       0777
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

            Caused by:
            java.lang.RuntimeException: oops
    """
        }
    
        def "optionally shows stack traces"() {
            testLogging.getShowStackTraces() >> true
            testLogging.getStackTraceFilters() >> EnumSet.noneOf(TestStackTraceFilter)
            def exception = new Exception("ouch")
            exception.stackTrace = createStackTrace()
    
            expect:
            formatter.format(testDescriptor, [exception]) == """\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/DefaultTestLogging.java

    import static org.gradle.util.internal.GUtil.toEnum;
    import static org.gradle.util.internal.GUtil.toEnumSet;
    
    public class DefaultTestLogging implements TestLogging {
        private Set<TestLogEvent> events = EnumSet.noneOf(TestLogEvent.class);
        private int minGranularity = -1;
        private int maxGranularity = -1;
        private int displayGranularity = 2;
        private boolean showExceptions = true;
        private boolean showCauses = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 10:04:16 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-out.yaml

                            oneOf:
                              stringMatch:
                                exact: iss
                    - metadata:
                        filter: istio_authn
                        path:
                        - key: request.auth.claims
                        - key: iss
                        value:
                          listMatch:
                            oneOf:
                              stringMatch:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/visitor.go

    		}
    		for i := range s.ValueValidation.AnyOf {
    			m.visitNestedValueValidation(&s.ValueValidation.AnyOf[i])
    		}
    		for i := range s.ValueValidation.OneOf {
    			m.visitNestedValueValidation(&s.ValueValidation.OneOf[i])
    		}
    		if s.ValueValidation.Not != nil {
    			m.visitNestedValueValidation(s.ValueValidation.Not)
    		}
    	}
    
    	return ret
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/compress/gzip/gunzip.go

    		if s, err = z.readString(); err != nil {
    			return hdr, noEOF(err)
    		}
    		hdr.Name = s
    	}
    
    	if flg&flagComment != 0 {
    		if s, err = z.readString(); err != nil {
    			return hdr, noEOF(err)
    		}
    		hdr.Comment = s
    	}
    
    	if flg&flagHdrCrc != 0 {
    		if _, err = io.ReadFull(z.r, z.buf[:2]); err != nil {
    			return hdr, noEOF(err)
    		}
    		digest := le.Uint16(z.buf[:2])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/kubeopenapi.go

    		ret.AllOf = append(ret.AllOf, *v.AllOf[i].toKubeOpenAPI())
    	}
    	for i := range v.AnyOf {
    		ret.AnyOf = append(ret.AnyOf, *v.AnyOf[i].toKubeOpenAPI())
    	}
    	for i := range v.OneOf {
    		ret.OneOf = append(ret.OneOf, *v.OneOf[i].toKubeOpenAPI())
    	}
    	ret.Not = v.Not.toKubeOpenAPI()
    }
    
    func (vv *NestedValueValidation) toKubeOpenAPI() *spec.Schema {
    	if vv == nil {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top