Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 116 for isMatching (0.29 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/StartBuildOrRespondWithBusy.java

            try {
                Runnable command = new Runnable() {
                    @Override
                    public void run() {
                        LOGGER.info("Daemon is about to start building {}. Dispatching build started information...", build);
                        execution.getConnection().buildStarted(new BuildStarted(diagnostics));
                        execution.proceed();
                    }
                };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. internal/hash/reader_test.go

    			src:        mustReader(t, bytes.NewReader([]byte("abcd")), 4, "", "", 4),
    			size:       4,
    			actualSize: 4,
    			success:    true,
    		},
    		{
    			desc:       "Mismatching sha256",
    			src:        mustReader(t, bytes.NewReader([]byte("abcd")), 4, "", "88d4266fd4e6338d13b845fcf289579d209c897823b9217da3e161936f031589", 4),
    			size:       4,
    			actualSize: 4,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/Reflection.java

          } catch (ClassNotFoundException e) {
            throw new AssertionError(e);
          }
        }
      }
    
      /**
       * Returns a proxy instance that implements {@code interfaceType} by dispatching method
       * invocations to {@code handler}. The class loader of {@code interfaceType} will be used to
       * define the proxy class. To implement multiple interfaces or specify a class loader, use {@link
       * Proxy#newProxyInstance}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/Reflection.java

          } catch (ClassNotFoundException e) {
            throw new AssertionError(e);
          }
        }
      }
    
      /**
       * Returns a proxy instance that implements {@code interfaceType} by dispatching method
       * invocations to {@code handler}. The class loader of {@code interfaceType} will be used to
       * define the proxy class. To implement multiple interfaces or specify a class loader, use {@link
       * Proxy#newProxyInstance}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/actor/Actor.java

        /**
         * Stops accepting new method calls, and blocks until all method calls have been executed by the target object.
         *
         * @throws DispatchException When there were any failures dispatching method calls to the target object.
         */
        @Override
        void stop() throws DispatchException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.h

    // Verifies that the given types are cast compatible. If not, emits appropriate
    // error for the given op. If mask_one_dim is set to true, then the types are
    // allowed to have one mismatching dimension. Masking one of the dimensions is
    // useful for ops like Concat that requires all ranked inputs to have the same
    // rank and match dimension sizes for all but one of the dimensions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/MessageHubTest.groovy

            then:
            new ArrayList<String>(messages).sort() == 0..19
    
            cleanup:
            connection1.stop()
            connection2.stop()
        }
    
        def "stops dispatching outgoing messages to failed connection"() {
            RemoteConnection<InterHubMessage> outgoing = Mock()
            def connection = new MockOutgoingConnection(outgoing)
            def dispatch = hub.getOutgoing("channel", String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/AntBuilderDelegate.java

            builder.invokeMethod("setParent", parent, child);
        }
    
        @Override
        protected void nodeCompleted(Object parent, Object node) {
            if (parent == null && node == null) {// happens when dispatching to taskdef via createNode()
                return;
            }
            builder.invokeMethod("nodeCompleted", parent, node);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 10 10:55:07 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_unified_experimental_internal.h

        }
      }
    };
    }  // namespace internal
    
    using TracingOperationPtr =
        std::unique_ptr<TracingOperation, internal::TracingOperationDeleter>;
    
    // This holds the context for the execution: dispatching operations either to an
    // MLIR implementation or to a graph implementation.
    class TracingContext : public AbstractContext {
     protected:
      explicit TracingContext(AbstractContextKind kind) : AbstractContext(kind) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 13 22:20:40 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  10. src/strconv/strconv_test.go

    	for _, v := range vectors {
    		nerr, ok := v.err.(*NumError)
    		if !ok {
    			t.Errorf("test %s, error was not a *NumError", v.want)
    			continue
    		}
    		if got := nerr.Func; got != v.want {
    			t.Errorf("mismatching Func: got %s, want %s", got, v.want)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 20:29:22 UTC 2022
    - 4.7K bytes
    - Viewed (0)
Back to top