Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 140 for Initialize (0.18 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            }
        }
    
        // TODO need to externalize CliRequest
        public int doMain(CliRequest cliRequest) {
            PlexusContainer localContainer = null;
            try {
                initialize(cliRequest);
                cli(cliRequest);
                properties(cliRequest);
                logging(cliRequest);
                informativeCommands(cliRequest);
                version(cliRequest);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    }
    
    // InitContext will initialize the data structures used for code generation.
    // This should be called before starting the push, from the thread creating
    // the push context.
    func (ps *PushContext) InitContext(env *Environment, oldPushContext *PushContext, pushReq *PushRequest) error {
    	// Acquire a lock to ensure we don't concurrently initialize the same PushContext.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

                                t.treeConnect(null, null);
                            }
                        }
                        else {
                            log.debug("Initialize signing");
                            byte[] signingKey = npa.getSigningKey(getContext(), negoResp.getServerData().encryptionKey);
                            if ( signingKey == null ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    tasks.create<Zip>("archiveTestReports") {
        archiveAppendix = testReportType  // <2>
        from(test.get().reports.html.destination)
    }
    ----
    <1> Creates and initializes an extra property on the `test` task, binding it to a "global" property
    <2> Uses the "global" property to initialize the `archiveTestReports` task
    
    There is one last syntax for extra properties that we should cover, one that treats `extra` as a map.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/go/printer/nodes.go

    // and at most one pending comment in the p.comment cache.
    func (p *printer) setComment(g *ast.CommentGroup) {
    	if g == nil || !p.useNodeComments {
    		return
    	}
    	if p.comments == nil {
    		// initialize p.comments lazily
    		p.comments = make([]*ast.CommentGroup, 1)
    	} else if p.cindex < len(p.comments) {
    		// for some reason there are pending comments; this
    		// should never happen - handle gracefully and flush
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ppc64/ssa.go

    			ld = ppc64.ALWAR
    			st = ppc64.ASTWCCC
    			cmp = ppc64.ACMPW
    		}
    		r0 := v.Args[0].Reg()
    		r1 := v.Args[1].Reg()
    		r2 := v.Args[2].Reg()
    		out := v.Reg0()
    		// Initialize return value to false
    		p := s.Prog(ppc64.AMOVD)
    		p.From.Type = obj.TYPE_CONST
    		p.From.Offset = 0
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = out
    		// LWSYNC - Assuming shared data not write-through-required nor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    //
    // During the normal course of the allocator, we might throw a still-live
    // value out of all registers. When that value is subsequently used, we must
    // load it from a slot on the stack. We must also issue an instruction to
    // initialize that stack location with a copy of v.
    //
    // pre-regalloc:
    //   (1) v = Op ...
    //   (2) x = Op ...
    //   (3) ... = Op v ...
    //
    // post-regalloc:
    //   (1) v = Op ...    : AX // computes v, store result in AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. plugin/pkg/admission/limitranger/admission_test.go

    	handler, err := NewLimitRanger(&DefaultLimitRangerActions{})
    	if err != nil {
    		return nil, f, err
    	}
    	pluginInitializer := genericadmissioninitializer.New(c, nil, f, nil, nil, nil, nil)
    	pluginInitializer.Initialize(handler)
    	err = admission.ValidateInitialization(handler)
    	return handler, f, err
    }
    
    func validPersistentVolumeClaim(name string, resources api.VolumeResourceRequirements) api.PersistentVolumeClaim {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. cmd/xl-storage.go

    					Config:  rcfg,
    					remotes: tgts,
    				}
    			}
    		}
    	}
    
    	vcfg, _ := globalBucketVersioningSys.Get(cache.Info.Name)
    
    	// return initialized object layer
    	objAPI := newObjectLayerFn()
    	// object layer not initialized, return.
    	if objAPI == nil {
    		return cache, errServerNotInitialized
    	}
    
    	poolIdx, setIdx, _ := s.GetDiskLoc()
    
    	disks, err := objAPI.GetDisks(poolIdx, setIdx)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

             *             const val K = 1
             *         }
             *     }
             *
             * the compiler reports "Variable 'K' must be initialized". This happens because there is no guarantee that the companion object
             * was initialized at the time when we use `C.K` for the enum entry `ONE`. To avoid this type of compiler errors, we don't shorten
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top