Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 150 for predates (0.23 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         */
        AntBuilder getAnt();
    
        /**
         * <p>Creates an additional <code>AntBuilder</code> for this project. You can use this in your build file to execute
         * ant tasks.</p>
         *
         * @return Creates an <code>AntBuilder</code> for this project. Never returns null.
         * @see #getAnt()
         */
        AntBuilder createAntBuilder();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///
      /// TODO(b/139060984): After all filesystems are converted, revisit note.
      ///
      /// This operation must be provided. See "REQUIRED OPERATIONS" above.
      void (*cleanup)(TF_Filesystem* filesystem);
    
      /// Creates a new random access read-only file from given `path`.
      ///
      /// After this call `file` may be concurrently accessed by multiple threads.
      ///
      /// Plugins:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/Futures.java

      // that should resolve the issue. This comes at the cost of adding more write barriers to the
      // implementations.
    
      private Futures() {}
    
      /**
       * Creates a {@code ListenableFuture} which has its value set immediately upon construction. The
       * getters just return the value. This {@code Future} can't be canceled or timed out and its
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context_test.go

    				pc1.initEnvoyFilters(env, nil, nil)
    
    				// Update store with incoming changes
    				creates := map[ConfigKey]config.Config{}
    				for _, cfg := range tt.creates {
    					if _, err := store.Create(cfg); err != nil {
    						t.Errorf("Error creating config %s/%s", cfg.Namespace, cfg.Name)
    					}
    					creates[ConfigKey{Name: cfg.Name, Namespace: cfg.Namespace, Kind: kind.EnvoyFilter}] = cfg
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/Futures.java

      // that should resolve the issue. This comes at the cost of adding more write barriers to the
      // implementations.
    
      private Futures() {}
    
      /**
       * Creates a {@code ListenableFuture} which has its value set immediately upon construction. The
       * getters just return the value. This {@code Future} can't be canceled or timed out and its
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  6. common/scripts/metallb-native.yaml

                          items:
                            description: A label selector requirement is a selector that
                              contains values, a key, and an operator that relates the
                              key and values.
                            properties:
                              key:
                                description: key is the label key that the selector applies
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    		return ErrSectionDone
    	}
    	return nil
    }
    
    // StartQuestions prepares the builder for packing Questions.
    func (b *Builder) StartQuestions() error {
    	if err := b.startCheck(sectionQuestions); err != nil {
    		return err
    	}
    	b.section = sectionQuestions
    	return nil
    }
    
    // StartAnswers prepares the builder for packing Answers.
    func (b *Builder) StartAnswers() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/merge_control_flow.mlir

    // RUN: tf-opt %s -tf-merge-control-flow | FileCheck %s
    
    // Check that IfRegions with different predicates are not merged.
    
    // CHECK-LABEL: func @different_predicate_no_merge
    func.func @different_predicate_no_merge() {
      // CHECK:      tf_device.cluster
      // CHECK:        "tf.IfRegion"
      // CHECK:        "tf.IfRegion"
      "tf_device.cluster"() ({
        %0 = "tf.Const"() {value = dense<true> : tensor<i1>} : () -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 63.7K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

      $start=ConvertTo_DottedDecimalIP($network+3)
      return $start
    }
    
    # Configures HNS on the Windows node to enable Kubernetes networking:
    #   - Creates the "management" interface associated with an initial HNS network.
    #   - Creates the HNS network $env:KUBE_NETWORK for pod networking.
    #   - Creates an HNS endpoint for pod networking.
    #   - Adds necessary routes on the management interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    }
    
    Operation* ApplyXlaHostTransferAttr(Operation* op, OpBuilder& builder) {
      op->setAttr("_xla_has_host_transfer", builder.getBoolAttr(true));
      return op;
    }
    
    // Creates a tf._XlaSendFromHost or tf._XlaSendFromHostV2 op. If device ordinal
    // is present, a tf._XlaSendFromHostV2 op is created instead.
    Operation* CreateSendFromHostOp(OpBuilder& builder, Location loc,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
Back to top