Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 180 for bar7 (0.07 sec)

  1. src/internal/trace/testdata/tests/go122-syscall-steal-proc-gen-boundary-reacquire-new-proc-bare-m.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 493 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                            assert files.collect { it.name } == ['b-bar.jar']
                        }
                    }
                }
                project(':b') {
                    configurations {
                        foo
                        bar
                        create 'default'
                    }
                    task barJar(type: Jar) {
                       archiveBaseName = 'b-bar'
                       destinationDirectory = buildDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  3. common/config/.golangci.yml

            # - name: unnecessary-stmt
            # - name: deep-exit
            # - name: import-shadowing
            # - name: modifies-value-receiver
            # - name: unused-receiver
            # - name: bare-return
            # - name: flag-parameter
            # - name: unhandled-error
            # - name: if-return
      unparam:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. src/internal/godebug/godebug.go

    // Note: Be careful about new imports here. Any package
    // that internal/godebug imports cannot itself import internal/godebug,
    // meaning it cannot introduce a GODEBUG setting of its own.
    // We keep imports to the absolute bare minimum.
    import (
    	"internal/bisect"
    	"internal/godebugs"
    	"sync"
    	"sync/atomic"
    	"unsafe"
    	_ "unsafe" // go:linkname
    )
    
    // A Setting is a single setting in the $GODEBUG environment variable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/common/extensions.kt

        // US region agents have name "EC2-XXX"
        doesNotContain("teamcity.agent.name", "EC2")
    }
    
    /**
     * We have some "shared" host where a Linux build agent and a Windows build agent
     * both run on the same bare metal. Some builds require exclusive access to the
     * hardware resources (e.g. performance test).
     */
    fun Requirements.requiresNotSharedHost() {
        doesNotContain("agent.host.type", "shared")
    }
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/HostAndPort.java

            // Exactly 1 colon. Split into host:port.
            host = hostPortString.substring(0, colonPos);
            portString = hostPortString.substring(colonPos + 1);
          } else {
            // 0 or 2+ colons. Bare hostname or IPv6 literal.
            host = hostPortString;
            hasBracketlessColons = (colonPos >= 0);
          }
        }
    
        int port = NO_PORT;
        if (!Strings.isNullOrEmpty(portString)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/deadcode.go

    		//    y = (Add x 1)
    		//    goto 1
    		// (Phi y) refers to the *previous* value of y, whereas
    		// (Copy y) refers to the *current* value of y.
    		// The modified code has a cycle and the scheduler
    		// will barf on it.
    		//
    		// Fortunately, this situation can only happen for dead
    		// code loops. We know the code we're working with is
    		// not dead, so we're ok.
    		// Proof: If we have a potential bad cycle, we have a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_test.go

    		t.Errorf("len(pods) = %v, want %v", got, want)
    	}
    }
    
    func TestStatefulSetControllerDeletionTimestampRace(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	set := newStatefulSet(3)
    	// The bare client says it IS deleted.
    	set.DeletionTimestamp = new(metav1.Time)
    	ssc, _, om, ssh := newFakeStatefulSetController(ctx, set)
    
    	// The lister (cache) says it's NOT deleted.
    	set2 := *set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/net/HostAndPort.java

            // Exactly 1 colon. Split into host:port.
            host = hostPortString.substring(0, colonPos);
            portString = hostPortString.substring(colonPos + 1);
          } else {
            // 0 or 2+ colons. Bare hostname or IPv6 literal.
            host = hostPortString;
            hasBracketlessColons = (colonPos >= 0);
          }
        }
    
        int port = NO_PORT;
        if (!Strings.isNullOrEmpty(portString)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/pilot-dashboard.gen.json

                "type": "datasource",
                "uid": "-- Mixed --"
             },
             "fieldConfig": {
                "defaults": {
                   "custom": {
                      "drawStyle": "bars",
                      "fillOpacity": 100,
                      "gradientMode": "none",
                      "showPoints": "never",
                      "stacking": {
                         "mode": "normal"
                      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top