Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for fnest (0.07 sec)

  1. src/regexp/syntax/simplify.go

    		// Special case: x{1} is just x.
    		if re.Min == 1 && re.Max == 1 {
    			return sub
    		}
    
    		// General case: x{n,m} means n copies of x and m copies of x?
    		// The machine will do less work if we nest the final m copies,
    		// so that x{2,5} = xx(x(x(x)?)?)?
    
    		// Build leading prefix: xx.
    		var prefix *Regexp
    		if re.Min > 0 {
    			prefix = &Regexp{Op: OpConcat}
    			prefix.Sub = prefix.Sub0[:0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 4.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/config.go

    // GetAdmissionPluginConfigurationFor returns a reader that holds the admission plugin configuration.
    func GetAdmissionPluginConfigurationFor(pluginCfg apiserver.AdmissionPluginConfiguration) (io.Reader, error) {
    	// if there is a nest object, return it directly
    	if pluginCfg.Configuration != nil {
    		return bytes.NewBuffer(pluginCfg.Configuration.Raw), nil
    	}
    	// there is nothing nested, so we delegate to path
    	if pluginCfg.Path != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/PluginDetectionIntegrationTest.groovy

            """
    
            then:
            succeeds "help"
        }
    
        @Issue("http://discuss.gradle.org/t/concurrentmodification-exception-on-java-8-for-plugins-withid-with-gradle-2-4/8928")
        def "can nest detection"() {
            // Actual plugins in use here are insignificant
            when:
            file("buildSrc/src/main/groovy/PluginA.groovy") << """
                class PluginA implements $Plugin.name {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

      FrozenRewritePatternSet patterns;
    };
    
    }  // namespace
    
    void CreateTFStandardPipeline(OpPassManager &pm,
                                  const StandardPipelineOptions &options) {
      OpPassManager &func_pm = pm.nest<func::FuncOp>();
    
      // First operates on the executor dialect:
      // - remove dead islands.
      // - fuse islands as much as possible.
      // - materialize the eventual "pass-through" ops by inlining their content.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. src/runtime/trace/annotation.go

    	fn()
    }
    
    // StartRegion starts a region and returns it.
    // The returned Region's [Region.End] method must be called
    // from the same goroutine where the region was started.
    // Within each goroutine, regions must nest. That is, regions started
    // after this region must be ended before this region can be ended.
    // Recommended usage is
    //
    //	defer trace.StartRegion(ctx, "myTracedRegion").End()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/function.cc

              return false;
            }
          }
        } break;
        default:
          return false;
      }
      return true;
    }
    
    // TODO(b/190203981): Move to a separate nest-like library.
    void Flatten(const TaggedValue& value,
                 std::vector<AbstractTensorHandle*>* flat_args) {
      if (value.type() == TaggedValue::Type::TENSOR) {
        flat_args->emplace_back(value.tensor().get());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskDependencyTest.groovy

            then:
            UnsupportedOperationException e3 = thrown()
            e3.message == 'Removing a task dependency from a task instance is not supported.'
        }
    
        def "can nest iterables and maps and closures and callables"() {
            Map nestedMap = [task: otherTask]
            Iterable nestedCollection = [nestedMap]
            Callable nestedCallable = { nestedCollection } as Callable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.cc

    }
    
    // Constructor of the decompose context.
    TFRDecomposeContext::TFRDecomposeContext(mlir::ModuleOp tfr_module)
        : tfr_module_(tfr_module), pm_(tfr_module_.getContext()) {
      mlir::OpPassManager& func_pm = pm_.nest<mlir::func::FuncOp>();
    
      // Prepare the imported graph.
      func_pm.addPass(mlir::CreateExecutorDialectToFunctionalConversionPass());
    
      // Run TFR lowering, inlining and raising to tf.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 29 02:34:43 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    			p.SampleType[i].Unit = sampleType[i].Unit
    		}
    		if err := p.ScaleN(ratios); err != nil {
    			return fmt.Errorf("scale: %v", err)
    		}
    	}
    	return nil
    }
    
    // CommonValueType returns the finest type from a set of compatible
    // types.
    func CommonValueType(ts []*profile.ValueType) (*profile.ValueType, error) {
    	if len(ts) <= 1 {
    		return nil, nil
    	}
    	minType := ts[0]
    	for _, t := range ts[1:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. internal/s3select/sql/analysis.go

    // s.Salary"). Analysis determines if such a scenario exists so an
    // error can be returned.
    
    var (
    	// Fatal error for query processing.
    	errNestedAggregation      = errors.New("Cannot nest aggregations")
    	errFunctionNotImplemented = errors.New("Function is not yet implemented")
    	errUnexpectedInvalidNode  = errors.New("Unexpected node value")
    	errInvalidKeypath         = errors.New("A provided keypath is invalid")
    )
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top