Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 184 for anotherOk (0.19 sec)

  1. src/internal/trace/order.go

    	// We must be able to advance this P.
    	//
    	// There are 2 ways a P can stop: ProcStop and ProcSteal. ProcStop is used when the P
    	// is stopped by the same M that started it, while ProcSteal is used when another M
    	// steals the P by stopping it from a distance.
    	//
    	// Since a P is bound to an M, and we're stopping on the same M we started, it must
    	// always be possible to advance the current M's P from a ProcStop. This is also why
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                    this.fileLocator.updateType(response.getFileType());
                    info = response;
                    fileSize = response.getDataSize();
    
                    // this is so damn unreliable, needs another race-prone query if required
                    haveAttributes = false;
    
                    // This seems to be the only way to obtain a reliable (with respect to locking) file size here
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

        }
    
        def "can overwrite a configuration attribute"() {
            def conf = conf()
            def flavor = Attribute.of(Flavor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    		// has pod already terminated or been deleted?
    		status, ok := p.podSyncStatuses[waitingUID]
    		if !ok || status.IsTerminationRequested() || status.IsTerminated() {
    			continue
    		}
    		// another pod is next in line
    		if waitingUID != uid {
    			p.waitingToStartStaticPodsByFullname[fullname] = waitingPods[i:]
    			return false
    		}
    		// we are up next, remove ourselves
    		waitingPods = waitingPods[i+1:]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    			}
    		}
    		return true
    	})
    	toSort = append(toSort, toDelete...)
    	return toSort, nil
    }
    
    // Returns a (recursive) strategic merge patch, a parallel deletion list if necessary and
    // another list to set the order of the list
    // Only list of primitives with merge strategy will generate a parallel deletion list.
    // These two lists should yield modified when applied to original, for lists with merge semantics.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            call("{ it.prop 'value'}", bean);
            assertThat(bean.getProp(), equalTo("value"));
    
            call("{ it.finalGetter 'another'}", bean);
            assertThat(bean.getFinalGetter(), equalTo("another"));
    
            call("{ it.writeOnly 12}", bean);
            assertThat(bean.writeOnly, equalTo(12));
    
            call("{ it.primitive 12}", bean);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  7. pkg/controller/cronjob/cronjob_controllerv2_test.go

    				t.Errorf("%s: expected %d job deleted, actually %v", name, expectedDeletes, len(jc.DeleteJobName))
    			}
    
    			// Status update happens once when ranging through job list, and another one if create jobs.
    			expectUpdates := 1
    			expectedEvents := 0
    			if tc.expectCreate {
    				expectedEvents++
    				expectUpdates++
    			}
    			if tc.expectDelete {
    				expectedEvents++
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  8. cmd/erasure-healing_test.go

    		t.Fatalf("Failed to read a file - %v", err)
    	}
    
    	if !reflect.DeepEqual(part1Disk1Origin, part1Replaced) {
    		t.Fatalf("part.1 not healed correctly")
    	}
    
    	// Test 3, Corrupt one part and remove data in another disk
    	err = firstDisk.WriteAll(context.Background(), bucket, pathJoin(object, fi.DataDir, "part.1"), []byte("foobytes"))
    	if err != nil {
    		t.Fatalf("Failed to write a file - %v", err)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    // issues or provide more information. In this file you have full control
    // of the op definition; all changes will be retained with subsequent
    // refreshes.
    //
    // This file includes another file, `tf_generated_ops.td`, which contains
    // all ops whose definitions are generated from TensorFlow codebase.
    // Changes made there are not respected.
    
    #ifndef TF_OPS
    #define TF_OPS
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    			}
    			return nil
    		}
    		return err
    	}
    
    	// Skip syncing of the job it is managed by another controller.
    	// We cannot rely solely on skipping of queueing such jobs for synchronization,
    	// because it is possible a synchronization task is queued for a job, without
    	// the managedBy field, but the job is quickly replaced by another job with
    	// the field. Then, the syncJob might be invoked for a job with the field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top