Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 94 for integers (0.25 sec)

  1. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * // Result.writeRowsToOutputStreamFuture() returns a ListenableFuture that resolves to the
       * // number of written rows. openOutputFile() returns a FileOutputStream (which implements
       * // Closeable).
       * ClosingFuture<Integer> rowsFuture2 =
       *     queryFuture.transformAsync(
       *         (closer, result) -> {
       *           FileOutputStream fos = closer.eventuallyClose(openOutputFile(), closingExecutor);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	Align  uint32 /* Alignment in memory and file. */
    }
    
    // ELF32 Dynamic structure. The ".dynamic" section contains an array of them.
    type Dyn32 struct {
    	Tag int32  /* Entry type. */
    	Val uint32 /* Integer/Address value. */
    }
    
    // ELF32 Compression header.
    type Chdr32 struct {
    	Type      uint32
    	Size      uint32
    	Addralign uint32
    }
    
    /*
     * Relocation entries.
     */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            private static final Set<? extends Class<?>> PRIMITIVE_TYPES = ImmutableSet.of(Byte.TYPE, Boolean.TYPE, Character.TYPE, Short.TYPE, Integer.TYPE, Long.TYPE, Float.TYPE, Double.TYPE);
            private static final String DYNAMIC_OBJECT_HELPER_FIELD = "_gr_dyn_";
            private static final String MAPPING_FIELD = "_gr_map_";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    //	*interface{}
    //	*RawBytes
    //	*Rows (cursor value)
    //	any type implementing Scanner (see Scanner docs)
    //
    // In the most simple case, if the type of the value from the source
    // column is an integer, bool or string type T and dest is of type *T,
    // Scan simply assigns the value through the pointer.
    //
    // Scan also converts between string and numeric types, as long as no
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

             << " at index path: <value>";
          for (auto path_element : current_index_path_) {
            os << ".";
            if (auto integer = mlir::dyn_cast<mlir::IntegerAttr>(path_element)) {
              os << integer.getValue();
            } else {
              auto str = mlir::cast<mlir::StringAttr>(path_element);
              os << str.getValue();
            }
          }
          os << "\n";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    		}
    		kubeInformers.Start(wait.NeverStop)
    		klog.InfoS("Attempting to sync node with API server")
    	} else {
    		// we don't have a client to sync!
    		nodeIndexer := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{})
    		nodeLister = corelisters.NewNodeLister(nodeIndexer)
    		nodeHasSynced = func() bool { return true }
    		klog.InfoS("Kubelet is running in standalone mode, will skip API server sync")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authorization/v1/generated.pb.go

    		}
    	}
    	return 0, io.ErrUnexpectedEOF
    }
    
    var (
    	ErrInvalidLengthGenerated        = fmt.Errorf("proto: negative length found during unmarshaling")
    	ErrIntOverflowGenerated          = fmt.Errorf("proto: integer overflow")
    	ErrUnexpectedEndOfGroupGenerated = fmt.Errorf("proto: unexpected end of group")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 100.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authorization/v1beta1/generated.pb.go

    		}
    	}
    	return 0, io.ErrUnexpectedEOF
    }
    
    var (
    	ErrInvalidLengthGenerated        = fmt.Errorf("proto: negative length found during unmarshaling")
    	ErrIntOverflowGenerated          = fmt.Errorf("proto: integer overflow")
    	ErrUnexpectedEndOfGroupGenerated = fmt.Errorf("proto: unexpected end of group")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1beta1/generated.pb.go

    		}
    	}
    	return 0, io.ErrUnexpectedEOF
    }
    
    var (
    	ErrInvalidLengthGenerated        = fmt.Errorf("proto: negative length found during unmarshaling")
    	ErrIntOverflowGenerated          = fmt.Errorf("proto: integer overflow")
    	ErrUnexpectedEndOfGroupGenerated = fmt.Errorf("proto: unexpected end of group")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    	}
    	if retries.RetryOn != "" {
    		retryOnPolicies := strings.Split(retries.RetryOn, ",")
    		for _, policy := range retryOnPolicies {
    			// Try converting it to an integer to see if it's a valid HTTP status code.
    			i, _ := strconv.Atoi(policy)
    
    			if http.StatusText(i) == "" && !supportedRetryOnPolicies.Contains(policy) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top