Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for lombok (0.11 sec)

  1. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    	if volumeNode1ComboState != AttachStateAttached {
    		t.Fatalf("%q/%q volume/node combo is marked %q; expected 'Attached'.", generatedVolumeName1, node1Name, volumeNode1ComboState)
    	}
    
    	volumeNode2ComboState := asw.GetAttachState(generatedVolumeName1, node2Name)
    	if volumeNode2ComboState != AttachStateAttached {
    		t.Fatalf("%q/%q volume/node combo is marked %q; expected 'Attached'.", generatedVolumeName1, node2Name, volumeNode2ComboState)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  2. src/reflect/type.go

    	typ := t.common()
    
    	// Look in cache.
    	ckey := cacheKey{Chan, typ, nil, uintptr(dir)}
    	if ch, ok := lookupCache.Load(ckey); ok {
    		return ch.(*rtype)
    	}
    
    	// This restriction is imposed by the gc compiler and the runtime.
    	if typ.Size_ >= 1<<16 {
    		panic("reflect.ChanOf: element size too large")
    	}
    
    	// Look in known types.
    	var s string
    	switch dir {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    					}
    				}
    			}
    		}
    	}
    
    	// Look for Godeps.json declaring import path.
    	data, _ := os.ReadFile(filepath.Join(dir, "Godeps/Godeps.json"))
    	var cfg1 struct{ ImportPath string }
    	json.Unmarshal(data, &cfg1)
    	if cfg1.ImportPath != "" {
    		return cfg1.ImportPath, nil
    	}
    
    	// Look for vendor.json declaring import path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. src/time/format.go

    // Format or Parse. The rest of this comment can be ignored unless you are
    // creating a custom layout string.
    //
    // To define your own format, write down what the reference time would look like
    // formatted your way; see the values of constants like [ANSIC], [StampMicro] or
    // [Kitchen] for examples. The model is to demonstrate what the reference time
    // looks like so that the Format and Parse methods can apply the same
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    				fmt.Fprintf(cmd.OutOrStdout(),
    					"Warning: No Kubernetes Services select pod %s (see https://istio.io/docs/setup/kubernetes/additional-setup/requirements/ )\n", // nolint: lll
    					kname(pod.ObjectMeta))
    			}
    			// TODO look for port collisions between services targeting this pod
    
    			kubeClient, err := ctx.CLIClientWithRevision(opts.Revision)
    			if err != nil {
    				return err
    			}
    
    			configClient := client.Istio()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. src/net/http/fs_test.go

    		{`?foo=bar#baz`, `<a href="%3Ffoo=bar%23baz">?foo=bar#baz</a>`},
    		{`<combo>?foo`, `<a href="%3Ccombo%3E%3Ffoo">&lt;combo&gt;?foo</a>`},
    		{`foo:bar`, `<a href="./foo:bar">foo:bar</a>`},
    	}
    
    	// We put each test file in its own directory in the fakeFS so we can look at it in isolation.
    	fs := make(fakeFS)
    	for i, test := range tests {
    		testFile := &fakeFileInfo{basename: test.name}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    When you run a task and the task is marked with `UP-TO-DATE` in the console output, this means incremental build is at work.
    
    How does an incremental build work? How can you make sure your tasks support running incrementally? Let’s take a look.
    
    [[sec:task_inputs_outputs]]
    == Task inputs and outputs
    
    In the most common case, a task takes some inputs and generates some outputs.
    We can consider the process of Java compilation as an example of a task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    	for ri := 0; ri < drelocs.Count(); ri++ {
    		r := drelocs.At(ri)
    		// Look for "use type" relocs.
    		if r.Type() == objabi.R_USETYPE {
    			d.defgotype(r.Sym())
    			continue
    		}
    		if r.Type() != objabi.R_DWARFSECREF {
    			continue
    		}
    
    		rsym := r.Sym()
    		rst := d.ldr.SymType(rsym)
    
    		// Look for abstract function references.
    		if rst == sym.SDWARFABSFCN {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            ClassNode val;
            for (ClassNode classToCheck = currentClass;
                /*
                 * We know that DefaultScript & friends don't have user-visible nested types,
                 * so don't try to look up nonsensical types like org.gradle.Script#sourceCompatibility
                 */
                 classToCheck != null && classToCheck != ClassHelper.OBJECT_TYPE && !SCRIPTS_PACKAGE.equals(classToCheck.getPackageName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            cliRequest.topDirectory = topDirectory;
            // We're very early in the process, and we don't have the container set up yet,
            // so we rely on the JDK services to eventually look up a custom RootLocator.
            // This is used to compute {@code session.rootDirectory} but all {@code project.rootDirectory}
            // properties will be computed through the RootLocator found in the container.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top