Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 6,499 for happen (0.16 sec)

  1. platforms/core-configuration/declarative-dsl-tooling-builders/src/main/kotlin/org/gradle/declarative/dsl/tooling/builders/DeclarativeSchemaModelBuilder.kt

        fun InterpretationSchemaBuildingResult.sequenceOrError() = when (this) {
            is InterpretationSchemaBuildingResult.InterpretationSequenceAvailable -> sequence
            // This is rather an unexpected case, should not happen in normal operation.
            InterpretationSchemaBuildingResult.SchemaNotBuilt -> throw GradleException("schema not available")
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/IncludedBuildDependencySubstitutionsBuilder.java

            } else {
                throw new IllegalArgumentException();
            }
        }
    
        private void build(IncludedBuildState build) {
            if (processed.contains(build)) {
                // This may happen during early resolution, where we iterate through all builds to find only
                // the ones for which we need to register substitutions early so that they are available
                // during plugin application from plugin builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:28 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/streams/ExecOutputHandleRunner.java

            }
        }
    
        private void writeBuffer(byte[] buffer, int nread) throws IOException {
            outputStream.write(buffer, 0, nread);
            outputStream.flush();
        }
    
        /**
         * This can happen e.g. on IBM JDK when a remote process was terminated. Instead of
         * returning -1 on the next read() call, it will interrupt the current read call.
         */
        private boolean wasInterrupted(Throwable t) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 16:06:58 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http/ExchangeCodec.kt

      @Throws(IOException::class)
      fun trailers(): Headers
    
      /**
       * Cancel this stream. Resources held by this stream will be cleaned up, though not synchronously.
       * That may happen later by the connection pool thread.
       */
      fun cancel()
    
      /**
       * Carries an exchange. This is usually a connection, but it could also be a connect plan for
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/call_to_exported.py

      # the wrapper.
      #
      # The reason for doing this is so that later interprocedural passes don't have
      # to worry about what to do with these attributes.
      # An example of where this would happen is when converting to XLA, which
      # requires eliminating mutable variables (and is thus sort of like an
      # interprocedural SSA formation, which in particular will
      # modify signatures interprocedurally).
      #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 28 19:09:38 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/execution/BuildSessionLifecycleBuildActionExecutor.java

                    // Note: throw the failure rather than returning a result object containing the failure, as console failure logging based on the _result_ happens down in the root build scope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ClassFileExtractionManager.java

        private boolean extractClassFile(final String className) {
            boolean classFileExtracted = false;
    
            final File extractedClassFile = tempFile();
            final String classFileName = new StrBuilder().append(className).append(".class").toString();
            final String classNamePackage = classNamePackage(className);
            final Set<File> packageJarFiles = packageJarFilesMappings.get(classNamePackage);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/arguments.go

    		// Warn in all other cases, but don't error out. This can happen only if the user has edited the argument list by hand, so they might know what they are doing
    		if err != nil {
    			if i != 0 {
    				klog.Warningf("[kubeadm] WARNING: The component argument %q could not be parsed correctly. The argument must be of the form %q. Skipping...\n", arg, "--")
    			}
    			continue
    		}
    
    		args = append(args, kubeadmapi.Arg{Name: key, Value: val})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 11:01:00 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. tests/update_test.go

    		t.Errorf("Not error should happen when updating with gorm expr, but got %v", err)
    	}
    
    	if err := DB.Model(&results[1]).Clauses(clause.Returning{Columns: []clause.Column{{Name: "age"}}}).Updates(map[string]interface{}{"age": gorm.Expr("age + ?", 100)}).Error; err != nil {
    		t.Errorf("Not error should happen when updating with gorm expr, but got %v", err)
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Dec 04 03:50:58 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

    //   will often be more than two or three pointers to a particular object.
    // - References are only tracked as long as linked_ptr<> objects are copied.
    //   If a linked_ptr<> is converted to a raw pointer and back, BAD THINGS
    //   will happen (double deletion).
    //
    // A good use of this class is storing object references in STL containers.
    // You can safely put linked_ptr<> in a vector<>.
    // Other uses may not be as good.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top