Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for lico (0.19 sec)

  1. src/cmd/internal/src/xpos.go

    	n, m := p.index, q.index
    	return n > m || n == m && p.lico > q.lico
    }
    
    // WithNotStmt returns the same location to be marked with DWARF is_stmt=0
    func (p XPos) WithNotStmt() XPos {
    	p.lico = p.lico.withNotStmt()
    	return p
    }
    
    // WithDefaultStmt returns the same location with undetermined is_stmt
    func (p XPos) WithDefaultStmt() XPos {
    	p.lico = p.lico.withDefaultStmt()
    	return p
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. cmd/license-update.go

    	if r.Index == 0 {
    		internalLogIf(ctx, fmt.Errorf("license not found in response from %s", url))
    		return
    	}
    
    	lic := r.String()
    	if lic == globalSubnetConfig.License {
    		// license hasn't changed.
    		return
    	}
    
    	kv := "subnet license=" + lic
    	result, err := setConfigKV(ctx, objectAPI, []byte(kv))
    	if err != nil {
    		internalLogIf(ctx, fmt.Errorf("error setting subnet license config: %w", err))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. maven-model/src/test/java/org/apache/maven/model/LicenseTest.java

        }
    
        public void testToStringNotNonsense() {
            License license = new License();
            license.setName("Unlicense");
            license.setUrl("http://lic.localdomain");
    
            String s = license.toString();
    
            assert "License {name=Unlicense, url=http://lic.localdomain}".equals(s) : s;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/resources/org/gradle/ide/visualstudio/tasks/internal/default.vcxproj.filters

            <Extensions>h;hpp;h++;hxx;hm;inl;inc;xsd</Extensions>
          </Filter>
          <Filter Include="Resource Files">
            <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav</Extensions>
          </Filter>
        </ItemGroup>
        <ItemGroup Label="Sources"/>
        <ItemGroup Label="Headers"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 04:34:07 UTC 2023
    - 808 bytes
    - Viewed (0)
  5. mockwebserver/src/main/kotlin/mockwebserver3/QueueDispatcher.kt

      override fun dispatch(request: RecordedRequest): MockResponse {
        // To permit interactive/browser testing, ignore requests for favicons.
        val requestLine = request.requestLine
        if (requestLine == "GET /favicon.ico HTTP/1.1") {
          logger.info("served $requestLine")
          return MockResponse(code = HttpURLConnection.HTTP_NOT_FOUND)
        }
    
        if (failFastResponse != null && responseQueue.peek() == null) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioFiltersFileTest.groovy

            headerFiles.Extensions[0].text() == 'h;hpp;h++;hxx;hm;inl;inc;xsd'
    
            Node resourceFiles = itemGroup('Filters').Filter.find({it.'@Include' == 'Resource Files'}) as Node
            resourceFiles.Extensions[0].text() == 'rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav'
    
            and:
            itemGroup('Sources').children().isEmpty()
            itemGroup('Headers').children().isEmpty()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 27 17:02:15 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. tests/util/leak/check.go

    // Check adds a check to a test to ensure there are no leaked goroutines
    // To use, simply call leak.Check(t) at the start of a test; Do not call it in defer.
    // It is recommended to call this as the first step, as Cleanup is called in LIFO order; this ensures any
    // Cleanup's called in the test happen first.
    // Any existing goroutines before the test starts are filtered out. This ensures a single test failing doesn't
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 10:22:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top