Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 375 for initiatives (0.16 sec)

  1. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    	asciiF iterFunc
    
    	p        int    // current position in input source
    	multiSeg []byte // remainder of multi-segment decomposition
    }
    
    type iterFunc func(*Iter) []byte
    
    // Init initializes i to iterate over src after normalizing it to Form f.
    func (i *Iter) Init(f Form, src []byte) {
    	i.p = 0
    	if len(src) == 0 {
    		i.setDone()
    		i.rb.nsrc = 0
    		return
    	}
    	i.multiSeg = nil
    	i.rb.init(f, src)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/AggregateFutureState.java

    /**
     * A helper which does some thread-safe operations for aggregate futures, which must be implemented
     * differently in GWT. Namely:
     *
     * <ul>
     *   <li>Lazily initializes a set of seen exceptions
     *   <li>Decrements a counter atomically
     * </ul>
     */
    @GwtCompatible(emulated = true)
    @ReflectionSupport(value = ReflectionSupport.Level.FULL)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

    CU_EXPORT CU_BOOL   CU_is_test_running(void);
    /**< Returns <CODE>CU_TRUE</CODE> if a test run is in progress,
     *  <CODE>CU_TRUE</CODE> otherwise.
     */
    
    CU_EXPORT void      CU_clear_previous_results(void);
    /**< 
     *  Initializes the run summary information stored from the previous test run.  
     *  Resets the run counts to zero, and frees any memory associated with 
     *  failure records.  Calling this function multiple times, while inefficient, 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/readme-templates/common-body.adoc.template

    * The latest https://gradle.org/install[Gradle distribution]
    ${toolChain.raw}
    
    == Create a project folder
    
    Gradle comes with a built-in task, called `init`, that initializes a new Gradle project in an empty folder.
    The `init` task uses the (also built-in) `wrapper` task to create a Gradle wrapper script, `gradlew`.
    
    The first step is to create a folder for the new project and change directory into it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. src/image/jpeg/huffman.go

    	d.bits.m >>= t
    	s := int32(1) << t
    	x := int32(d.bits.a>>uint8(d.bits.n)) & (s - 1)
    	if x < s>>1 {
    		x += ((-1) << t) + 1
    	}
    	return x, nil
    }
    
    // processDHT processes a Define Huffman Table marker, and initializes a huffman
    // struct from its contents. Specified in section B.2.4.2.
    func (d *decoder) processDHT(n int) error {
    	for n > 0 {
    		if n < 17 {
    			return FormatError("DHT has wrong length")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMutableIvyModuleResolveMetadataTest.groovy

        @Override
        AbstractMutableModuleComponentResolveMetadata createMetadata(ModuleComponentIdentifier id) {
            ivyMetadataFactory.create(id, []) as AbstractMutableModuleComponentResolveMetadata
        }
    
        def "initialises values from descriptor state and defaults"() {
            def id = DefaultModuleComponentIdentifier.newId(DefaultModuleIdentifier.newId("group", "module"), "version")
            configuration("runtime", [])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/WebSocket.kt

       */
      fun cancel()
    
      fun interface Factory {
        /**
         * Creates a new web socket and immediately returns it. Creating a web socket initiates an
         * asynchronous process to connect the socket. Once that succeeds or fails, `listener` will be
         * notified. The caller must either close or cancel the returned web socket when it is no longer
         * in use.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. tensorflow/cc/tools/freeze_saved_model_test.cc

          return saved_model_bundle->session->Run(
              /* inputs */ {}, /* output_tensors */ {}, {init_node}, &outputs);
        }
        return OkStatus();
      }
    
      // Adds `graph_def` to `saved_model_bundle` and initializes a session with
      // `init_node`.
      Status AddGraphDefToSavedModelBundle(const GraphDef& graph_def,
                                           const string& init_node,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  9. pkg/proxy/servicechangetracker.go

    // current is state after applying all of the changes.
    type serviceChange struct {
    	previous ServicePortMap
    	current  ServicePortMap
    }
    
    // NewServiceChangeTracker initializes a ServiceChangeTracker
    func NewServiceChangeTracker(makeServiceInfo makeServicePortFunc, ipFamily v1.IPFamily, recorder events.EventRecorder, processServiceMapChange processServiceMapChangeFunc) *ServiceChangeTracker {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

              }
              Unit
            }
        } catch (e: IOException) {
          System.err.println(e)
        }
      }
    }
    
    fun main() {
      // Call this before anything else initialises the JSSE stack.
      WireSharkListenerFactory.register()
    
      val example = WiresharkExample(tlsVersions = listOf(TLS_1_2), launch = CommandLine)
      example.run()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top